Info.plist 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>NSAppTransportSecurity</key>
  6. <dict>
  7. <key>NSAllowsArbitraryLoads</key>
  8. <true/>
  9. </dict>
  10. <key>CFBundleDevelopmentRegion</key>
  11. <string>en</string>
  12. <key>CFBundleExecutable</key>
  13. <string>$(EXECUTABLE_NAME)</string>
  14. <key>CFBundleIdentifier</key>
  15. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  16. <key>CFBundleInfoDictionaryVersion</key>
  17. <string>6.0</string>
  18. <key>CFBundleName</key>
  19. <string>$(PRODUCT_NAME)</string>
  20. <key>CFBundlePackageType</key>
  21. <string>APPL</string>
  22. <key>CFBundleShortVersionString</key>
  23. <string>1.0</string>
  24. <key>CFBundleVersion</key>
  25. <string>1</string>
  26. <key>LSRequiresIPhoneOS</key>
  27. <true/>
  28. <key>UILaunchStoryboardName</key>
  29. <string>LaunchScreen</string>
  30. <key>UIMainStoryboardFile</key>
  31. <string>Main</string>
  32. <key>UIRequiredDeviceCapabilities</key>
  33. <array>
  34. <string>armv7</string>
  35. </array>
  36. <key>UISupportedInterfaceOrientations</key>
  37. <array>
  38. <string>UIInterfaceOrientationPortrait</string>
  39. <string>UIInterfaceOrientationLandscapeLeft</string>
  40. <string>UIInterfaceOrientationLandscapeRight</string>
  41. </array>
  42. </dict>
  43. </plist>