Info.plist 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>CFBundleSignature</key>
  25. <string>????</string>
  26. <key>CFBundleVersion</key>
  27. <string>1</string>
  28. <key>LSRequiresIPhoneOS</key>
  29. <true/>
  30. <key>UILaunchStoryboardName</key>
  31. <string>LaunchScreen</string>
  32. <key>UIMainStoryboardFile</key>
  33. <string>Main</string>
  34. <key>UIRequiredDeviceCapabilities</key>
  35. <array>
  36. <string>armv7</string>
  37. </array>
  38. <key>UISupportedInterfaceOrientations</key>
  39. <array>
  40. <string>UIInterfaceOrientationPortrait</string>
  41. <string>UIInterfaceOrientationLandscapeLeft</string>
  42. </array>
  43. </dict>
  44. </plist>