Info.plist 2.6 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>NSPhotoLibraryUsageDescription</key>
  6. <string>$(PRODUCT_NAME) would like access to your photo gallery</string>
  7. <key>NSCameraUsageDescription</key>
  8. <string>$(PRODUCT_NAME) would like to use your camera</string>
  9. <key>NSPhotoLibraryAddUsageDescription</key>
  10. <string>$(PRODUCT_NAME) would like to save photos to your photo gallery</string>
  11. <key>NSMicrophoneUsageDescription</key>
  12. <string>$(PRODUCT_NAME) would like to use your microphone (for videos)</string>
  13. <key>CFBundleDevelopmentRegion</key>
  14. <string>en</string>
  15. <key>CFBundleDisplayName</key>
  16. <string>ReactMapDemo</string>
  17. <key>CFBundleExecutable</key>
  18. <string>$(EXECUTABLE_NAME)</string>
  19. <key>CFBundleIdentifier</key>
  20. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  21. <key>CFBundleInfoDictionaryVersion</key>
  22. <string>6.0</string>
  23. <key>CFBundleName</key>
  24. <string>$(PRODUCT_NAME)</string>
  25. <key>CFBundlePackageType</key>
  26. <string>APPL</string>
  27. <key>CFBundleShortVersionString</key>
  28. <string>1.0</string>
  29. <key>CFBundleSignature</key>
  30. <string>????</string>
  31. <key>CFBundleVersion</key>
  32. <string>1</string>
  33. <key>LSRequiresIPhoneOS</key>
  34. <true/>
  35. <key>NSAppTransportSecurity</key>
  36. <dict>
  37. <key>NSExceptionDomains</key>
  38. <dict>
  39. <key>localhost</key>
  40. <dict>
  41. <key>NSExceptionAllowsInsecureHTTPLoads</key>
  42. <true/>
  43. </dict>
  44. </dict>
  45. </dict>
  46. <key>NSLocationWhenInUseUsageDescription</key>
  47. <string/>
  48. <key>UILaunchStoryboardName</key>
  49. <string>LaunchScreen</string>
  50. <key>UIRequiredDeviceCapabilities</key>
  51. <array>
  52. <string>armv7</string>
  53. </array>
  54. <key>UISupportedInterfaceOrientations</key>
  55. <array>
  56. <string>UIInterfaceOrientationPortrait</string>
  57. <string>UIInterfaceOrientationLandscapeLeft</string>
  58. <string>UIInterfaceOrientationLandscapeRight</string>
  59. </array>
  60. <key>UIViewControllerBasedStatusBarAppearance</key>
  61. <false/>
  62. <key>UIAppFonts</key>
  63. <array>
  64. <string>AntDesign.ttf</string>
  65. <string>Entypo.ttf</string>
  66. <string>EvilIcons.ttf</string>
  67. <string>Feather.ttf</string>
  68. <string>FontAwesome.ttf</string>
  69. <string>FontAwesome5_Brands.ttf</string>
  70. <string>FontAwesome5_Regular.ttf</string>
  71. <string>FontAwesome5_Solid.ttf</string>
  72. <string>Fontisto.ttf</string>
  73. <string>Foundation.ttf</string>
  74. <string>Ionicons.ttf</string>
  75. <string>MaterialCommunityIcons.ttf</string>
  76. <string>MaterialIcons.ttf</string>
  77. <string>Octicons.ttf</string>
  78. <string>SimpleLineIcons.ttf</string>
  79. <string>Zocial.ttf</string>
  80. </array>
  81. </dict>
  82. </plist>