Info.plist 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>CFBundleDevelopmentRegion</key>
  6. <string>$(DEVELOPMENT_LANGUAGE)</string>
  7. <key>CFBundleExecutable</key>
  8. <string>$(EXECUTABLE_NAME)</string>
  9. <key>CFBundleIdentifier</key>
  10. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  11. <key>CFBundleInfoDictionaryVersion</key>
  12. <string>6.0</string>
  13. <key>CFBundleName</key>
  14. <string>$(PRODUCT_NAME)</string>
  15. <key>CFBundlePackageType</key>
  16. <string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
  17. <key>CFBundleShortVersionString</key>
  18. <string>1.0</string>
  19. <key>CFBundleVersion</key>
  20. <string>1</string>
  21. <key>LSRequiresIPhoneOS</key>
  22. <true/>
  23. <key>NSAppTransportSecurity</key>
  24. <dict>
  25. <key>NSAllowsArbitraryLoads</key>
  26. <true/>
  27. </dict>
  28. <key>NSPhotoLibraryAddUsageDescription</key>
  29. <string>NSPhotoLibraryAddUsageDescription</string>
  30. <key>UIApplicationSceneManifest</key>
  31. <dict>
  32. <key>UIApplicationSupportsMultipleScenes</key>
  33. <false/>
  34. <key>UISceneConfigurations</key>
  35. <dict>
  36. <key>UIWindowSceneSessionRoleApplication</key>
  37. <array>
  38. <dict>
  39. <key>UISceneConfigurationName</key>
  40. <string>Default Configuration</string>
  41. <key>UISceneDelegateClassName</key>
  42. <string>$(PRODUCT_MODULE_NAME).SceneDelegate</string>
  43. </dict>
  44. </array>
  45. </dict>
  46. </dict>
  47. <key>UILaunchStoryboardName</key>
  48. <string>LaunchScreen</string>
  49. <key>UIRequiredDeviceCapabilities</key>
  50. <array>
  51. <string>armv7</string>
  52. </array>
  53. <key>UISupportedInterfaceOrientations</key>
  54. <array>
  55. <string>UIInterfaceOrientationPortrait</string>
  56. <string>UIInterfaceOrientationLandscapeLeft</string>
  57. <string>UIInterfaceOrientationLandscapeRight</string>
  58. </array>
  59. <key>UISupportedInterfaceOrientations~ipad</key>
  60. <array>
  61. <string>UIInterfaceOrientationPortrait</string>
  62. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  63. <string>UIInterfaceOrientationLandscapeLeft</string>
  64. <string>UIInterfaceOrientationLandscapeRight</string>
  65. </array>
  66. </dict>
  67. </plist>