Info.plist 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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>RNPermissionsExample</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>NSAppTransportSecurity</key>
  28. <dict>
  29. <key>NSAllowsArbitraryLoads</key>
  30. <true/>
  31. <key>NSExceptionDomains</key>
  32. <dict>
  33. <key>localhost</key>
  34. <dict>
  35. <key>NSExceptionAllowsInsecureHTTPLoads</key>
  36. <true/>
  37. </dict>
  38. </dict>
  39. </dict>
  40. <key>NSAppleMusicUsageDescription</key>
  41. <string>Let me use your media library</string>
  42. <key>NSBluetoothPeripheralUsageDescription</key>
  43. <string>Let me use bluetooth</string>
  44. <key>NSBluetoothAlwaysUsageDescription</key>
  45. <string>Let me use bluetooth</string>
  46. <key>NSCalendarsUsageDescription</key>
  47. <string>Let me use your calendars</string>
  48. <key>NSCameraUsageDescription</key>
  49. <string>Let me use the camera</string>
  50. <key>NSContactsUsageDescription</key>
  51. <string>Let me use your contacts</string>
  52. <key>NSFaceIDUsageDescription</key>
  53. <string>Let me use FaceID</string>
  54. <key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
  55. <string>Let me use your location, even in background</string>
  56. <key>NSLocationAlwaysUsageDescription</key>
  57. <string>Let me use your location, even in background</string>
  58. <key>NSLocationWhenInUseUsageDescription</key>
  59. <string>Let me use your location when the app is opened</string>
  60. <key>NSMicrophoneUsageDescription</key>
  61. <string>Let me use the microphone</string>
  62. <key>NSMotionUsageDescription</key>
  63. <string>Let me use your motion data</string>
  64. <key>NSPhotoLibraryUsageDescription</key>
  65. <string>Let me use your photo library</string>
  66. <key>NSRemindersUsageDescription</key>
  67. <string>Let me use your reminders</string>
  68. <key>NSSpeechRecognitionUsageDescription</key>
  69. <string>Let me use speech recognition</string>
  70. <key>UIAppFonts</key>
  71. <array>
  72. <string>MaterialCommunityIcons.ttf</string>
  73. </array>
  74. <key>UIBackgroundModes</key>
  75. <array>
  76. <string>bluetooth-peripheral</string>
  77. <string>location</string>
  78. </array>
  79. <key>UILaunchStoryboardName</key>
  80. <string>LaunchScreen</string>
  81. <key>UIRequiredDeviceCapabilities</key>
  82. <array>
  83. <string>armv7</string>
  84. </array>
  85. <key>UISupportedInterfaceOrientations</key>
  86. <array>
  87. <string>UIInterfaceOrientationPortrait</string>
  88. </array>
  89. <key>UIViewControllerBasedStatusBarAppearance</key>
  90. <false/>
  91. </dict>
  92. </plist>