Info.plist 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>CFBundleDisplayName</key>
  6. <string>SafeAreaDemo</string>
  7. <key>CFBundleIdentifier</key>
  8. <string>companyName.SafeAreaDemo</string>
  9. <key>CFBundleShortVersionString</key>
  10. <string>1.0</string>
  11. <key>CFBundleVersion</key>
  12. <string>1.0</string>
  13. <key>LSRequiresIPhoneOS</key>
  14. <true/>
  15. <key>UIDeviceFamily</key>
  16. <array>
  17. <integer>1</integer>
  18. <integer>2</integer>
  19. </array>
  20. <key>UILaunchStoryboardName</key>
  21. <string>LaunchScreen</string>
  22. <key>UIRequiredDeviceCapabilities</key>
  23. <array>
  24. <string>armv7</string>
  25. </array>
  26. <key>UISupportedInterfaceOrientations</key>
  27. <array>
  28. <string>UIInterfaceOrientationPortrait</string>
  29. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  30. <string>UIInterfaceOrientationLandscapeLeft</string>
  31. <string>UIInterfaceOrientationLandscapeRight</string>
  32. </array>
  33. <key>UISupportedInterfaceOrientations~ipad</key>
  34. <array>
  35. <string>UIInterfaceOrientationPortrait</string>
  36. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  37. <string>UIInterfaceOrientationLandscapeLeft</string>
  38. <string>UIInterfaceOrientationLandscapeRight</string>
  39. </array>
  40. </dict>
  41. </plist>