ios.plist 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>en</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>APPL</string>
  17. <key>CFBundleShortVersionString</key>
  18. <string>$(BUNDLE_VERSION)</string>
  19. <key>CFBundleSignature</key>
  20. <string>????</string>
  21. <key>CFBundleVersion</key>
  22. <string>$(BUILD_VERSION)</string>
  23. <key>LSRequiresIPhoneOS</key>
  24. <true/>
  25. <key>LSSupportsOpeningDocumentsInPlace</key>
  26. <true/>
  27. <key>UIApplicationSceneManifest</key>
  28. <dict>
  29. <key>UIApplicationSupportsMultipleScenes</key>
  30. <false/>
  31. <key>UISceneConfigurations</key>
  32. <dict>
  33. <key>UIWindowSceneSessionRoleApplication</key>
  34. <array>
  35. <dict>
  36. <key>UISceneConfigurationName</key>
  37. <string>Default Configuration</string>
  38. <key>UISceneDelegateClassName</key>
  39. <string>IronSceneDelegate</string>
  40. </dict>
  41. </array>
  42. </dict>
  43. </dict>
  44. <key>UIFileSharingEnabled</key>
  45. <true/>
  46. <key>UILaunchScreen</key>
  47. <dict>
  48. <key>UIColorName</key>
  49. <string>Black</string>
  50. </dict>
  51. <key>UIRequiredDeviceCapabilities</key>
  52. <array>
  53. <string>arm64</string>
  54. </array>
  55. <key>UIStatusBarHidden</key>
  56. <true/>
  57. <key>UISupportedInterfaceOrientations</key>
  58. <array>
  59. <string>UIInterfaceOrientationPortrait</string>
  60. <string>UIInterfaceOrientationLandscapeLeft</string>
  61. <string>UIInterfaceOrientationLandscapeRight</string>
  62. </array>
  63. <key>UISupportedInterfaceOrientations~ipad</key>
  64. <array>
  65. <string>UIInterfaceOrientationPortrait</string>
  66. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  67. <string>UIInterfaceOrientationLandscapeLeft</string>
  68. <string>UIInterfaceOrientationLandscapeRight</string>
  69. </array>
  70. <key>UIViewControllerBasedStatusBarAppearance</key>
  71. <false/>
  72. </dict>
  73. </plist>