Info.plist 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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>CFBundleDisplayName</key>
  8. <string>planter</string>
  9. <key>CFBundleExecutable</key>
  10. <string>$(EXECUTABLE_NAME)</string>
  11. <key>CFBundleIdentifier</key>
  12. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  13. <key>CFBundleInfoDictionaryVersion</key>
  14. <string>6.0</string>
  15. <key>CFBundleName</key>
  16. <string>$(PRODUCT_NAME)</string>
  17. <key>CFBundlePackageType</key>
  18. <string>APPL</string>
  19. <key>CFBundleShortVersionString</key>
  20. <string>1.0</string>
  21. <key>CFBundleSignature</key>
  22. <string>????</string>
  23. <key>CFBundleVersion</key>
  24. <string>1</string>
  25. <key>LSRequiresIPhoneOS</key>
  26. <true/>
  27. <key>NSLocationWhenInUseUsageDescription</key>
  28. <string></string>
  29. <key>UILaunchStoryboardName</key>
  30. <string>LaunchScreen</string>
  31. <key>UIRequiredDeviceCapabilities</key>
  32. <array>
  33. <string>armv7</string>
  34. </array>
  35. <key>UISupportedInterfaceOrientations</key>
  36. <array>
  37. <string>UIInterfaceOrientationPortrait</string>
  38. <string>UIInterfaceOrientationLandscapeLeft</string>
  39. <string>UIInterfaceOrientationLandscapeRight</string>
  40. </array>
  41. <key>UIViewControllerBasedStatusBarAppearance</key>
  42. <false/>
  43. <key>NSLocationWhenInUseUsageDescription</key>
  44. <string></string>
  45. <key>NSAppTransportSecurity</key>
  46. <!--See http://ste.vn/2015/06/10/configuring-app-transport-security-ios-9-osx-10-11/ -->
  47. <dict>
  48. <key>NSAllowsArbitraryLoads</key>
  49. <true/>
  50. <key>NSExceptionDomains</key>
  51. <dict>
  52. <key>localhost</key>
  53. <dict>
  54. <key>NSExceptionAllowsInsecureHTTPLoads</key>
  55. <true/>
  56. </dict>
  57. </dict>
  58. </dict>
  59. <key>NSCalendarsUsageDescription</key>
  60. <string>Allow planter to access your calendar</string>
  61. <key>NSCameraUsageDescription</key>
  62. <string>Allow planter to use the camera</string>
  63. <key>NSContactsUsageDescription</key>
  64. <string>Allow planter experiences to access your contacts</string>
  65. <key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
  66. <string>Allow planter to use your location</string>
  67. <key>NSLocationAlwaysUsageDescription</key>
  68. <string>Allow planter to use your location</string>
  69. <key>NSLocationWhenInUseUsageDescription</key>
  70. <string>Allow planter to use your location</string>
  71. <key>NSMicrophoneUsageDescription</key>
  72. <string>Allow planter to access your microphone</string>
  73. <key>NSMotionUsageDescription</key>
  74. <string>Allow planter to access your device's accelerometer</string>
  75. <key>NSPhotoLibraryAddUsageDescription</key>
  76. <string>Give planter periences permission to save photos</string>
  77. <key>NSPhotoLibraryUsageDescription</key>
  78. <string>Give planter periences permission to access your photos</string>
  79. <key>NSRemindersUsageDescription</key>
  80. <string>Allow planter to access your reminders</string>
  81. </dict>
  82. </plist>