Info.plist 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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>$(PRODUCT_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>VCMI laucher</string>
  15. <key>CFBundlePackageType</key>
  16. <string>APPL</string>
  17. <key>CFBundleShortVersionString</key>
  18. <string>$(MARKETING_VERSION)</string>
  19. <key>CFBundleSignature</key>
  20. <string>????</string>
  21. <key>CFBundleVersion</key>
  22. <string>1</string>
  23. <key>LSApplicationQueriesSchemes</key>
  24. <array>
  25. <string>vcmi</string>
  26. </array>
  27. <key>LSRequiresIPhoneOS</key>
  28. <true/>
  29. <key>NSAppTransportSecurity</key>
  30. <dict>
  31. <key>NSAllowsArbitraryLoads</key>
  32. <true/>
  33. </dict>
  34. <key>UIFileSharingEnabled</key>
  35. <true/>
  36. <key>UILaunchStoryboardName</key>
  37. <string>LaunchScreen</string>
  38. <key>UIRequiredDeviceCapabilities</key>
  39. <array>
  40. <string>armv7</string>
  41. </array>
  42. <key>UISupportedInterfaceOrientations</key>
  43. <array>
  44. <string>UIInterfaceOrientationLandscapeLeft</string>
  45. <string>UIInterfaceOrientationLandscapeRight</string>
  46. </array>
  47. <key>UISupportedInterfaceOrientations~ipad</key>
  48. <array>
  49. <string>UIInterfaceOrientationLandscapeLeft</string>
  50. <string>UIInterfaceOrientationLandscapeRight</string>
  51. <string>UIInterfaceOrientationPortrait</string>
  52. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  53. </array>
  54. </dict>
  55. </plist>