Info.plist 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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>hola</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>CFBundleURLTypes</key>
  24. <array>
  25. <dict>
  26. <key>CFBundleTypeRole</key>
  27. <string>Editor</string>
  28. <key>CFBundleURLSchemes</key>
  29. <array>
  30. <string>prefs</string>
  31. </array>
  32. </dict>
  33. </array>
  34. <key>CFBundleVersion</key>
  35. <string>1</string>
  36. <key>ITSAppUsesNonExemptEncryption</key>
  37. <false />
  38. <key>LSRequiresIPhoneOS</key>
  39. <true />
  40. <key>NSAppTransportSecurity</key>
  41. <dict>
  42. <key>NSExceptionDomains</key>
  43. <dict>
  44. <key>localhost</key>
  45. <dict>
  46. <key>NSExceptionAllowsInsecureHTTPLoads</key>
  47. <true />
  48. </dict>
  49. </dict>
  50. </dict>
  51. <key>NSCameraUsageDescription</key>
  52. <string>Allow $(PRODUCT_NAME) to use your camera</string>
  53. <key>NSContactsUsageDescription</key>
  54. <string>Allow $(PRODUCT_NAME) to access your contacts</string>
  55. <key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
  56. <string>Allow $(PRODUCT_NAME) to use your location</string>
  57. <key>NSLocationAlwaysUsageDescription</key>
  58. <string>Allow $(PRODUCT_NAME) to use your location</string>
  59. <key>NSLocationWhenInUseUsageDescription</key>
  60. <string>Allow $(PRODUCT_NAME) to use your location</string>
  61. <key>NSMicrophoneUsageDescription</key>
  62. <string>Allow $(PRODUCT_NAME) to access your microphone</string>
  63. <key>NSMotionUsageDescription</key>
  64. <string>Allow $(PRODUCT_NAME) to access your device's accelerometer</string>
  65. <key>NSPhotoLibraryAddUsageDescription</key>
  66. <string>Give $(PRODUCT_NAME) permission to save photos</string>
  67. <key>NSPhotoLibraryUsageDescription</key>
  68. <string>Give $(PRODUCT_NAME) permission to access your photos</string>
  69. <key>NSHealthShareUsageDescription</key>
  70. <string>Read and understand health data.</string>
  71. <key>NSHealthUpdateUsageDescription</key>
  72. <string>Share workout data with other apps.</string>
  73. <!-- Below is only required if requesting clinical health data -->
  74. <key>NSHealthClinicalHealthRecordsShareUsageDescription</key>
  75. <string>Read and understand clinical health data.</string>
  76. <key>UILaunchStoryboardName</key>
  77. <string>LaunchScreen</string>
  78. <key>UIRequiredDeviceCapabilities</key>
  79. <array>
  80. <string>armv7</string>
  81. </array>
  82. <key>UISupportedInterfaceOrientations</key>
  83. <array>
  84. <string>UIInterfaceOrientationPortrait</string>
  85. </array>
  86. <key>UISupportedInterfaceOrientations~ipad</key>
  87. <array>
  88. <string>UIInterfaceOrientationLandscapeLeft</string>
  89. <string>UIInterfaceOrientationLandscapeRight</string>
  90. <string>UIInterfaceOrientationPortrait</string>
  91. </array>
  92. <key>UIUserInterfaceStyle</key>
  93. <string>Light</string>
  94. <key>UIViewControllerBasedStatusBarAppearance</key>
  95. <false />
  96. </dict>
  97. </plist>