123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
- <plist version="1.0">
- <dict>
- <key>CFBundleDevelopmentRegion</key>
- <string>en</string>
- <key>CFBundleDisplayName</key>
- <string>RNPermissionsExample</string>
- <key>CFBundleExecutable</key>
- <string>$(EXECUTABLE_NAME)</string>
- <key>CFBundleIdentifier</key>
- <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
- <key>CFBundleInfoDictionaryVersion</key>
- <string>6.0</string>
- <key>CFBundleName</key>
- <string>$(PRODUCT_NAME)</string>
- <key>CFBundlePackageType</key>
- <string>APPL</string>
- <key>CFBundleShortVersionString</key>
- <string>1.0</string>
- <key>CFBundleSignature</key>
- <string>????</string>
- <key>CFBundleVersion</key>
- <string>1</string>
- <key>LSRequiresIPhoneOS</key>
- <true/>
- <key>NSAppTransportSecurity</key>
- <dict>
- <key>NSAllowsArbitraryLoads</key>
- <true/>
- <key>NSExceptionDomains</key>
- <dict>
- <key>localhost</key>
- <dict>
- <key>NSExceptionAllowsInsecureHTTPLoads</key>
- <true/>
- </dict>
- </dict>
- </dict>
- <key>NSAppleMusicUsageDescription</key>
- <string>Let me use your media library</string>
- <key>NSBluetoothPeripheralUsageDescription</key>
- <string>Let me use bluetooth</string>
- <key>NSBluetoothAlwaysUsageDescription</key>
- <string>Let me use bluetooth</string>
- <key>NSCalendarsUsageDescription</key>
- <string>Let me use your calendars</string>
- <key>NSCameraUsageDescription</key>
- <string>Let me use the camera</string>
- <key>NSContactsUsageDescription</key>
- <string>Let me use your contacts</string>
- <key>NSFaceIDUsageDescription</key>
- <string>Let me use FaceID</string>
- <key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
- <string>Let me use your location, even in background</string>
- <key>NSLocationAlwaysUsageDescription</key>
- <string>Let me use your location, even in background</string>
- <key>NSLocationWhenInUseUsageDescription</key>
- <string>Let me use your location when the app is opened</string>
- <key>NSMicrophoneUsageDescription</key>
- <string>Let me use the microphone</string>
- <key>NSMotionUsageDescription</key>
- <string>Let me use your motion data</string>
- <key>NSPhotoLibraryUsageDescription</key>
- <string>Let me use your photo library</string>
- <key>NSRemindersUsageDescription</key>
- <string>Let me use your reminders</string>
- <key>NSSpeechRecognitionUsageDescription</key>
- <string>Let me use speech recognition</string>
- <key>UIAppFonts</key>
- <array>
- <string>MaterialCommunityIcons.ttf</string>
- </array>
- <key>UIBackgroundModes</key>
- <array>
- <string>bluetooth-peripheral</string>
- <string>location</string>
- </array>
- <key>UILaunchStoryboardName</key>
- <string>LaunchScreen</string>
- <key>UIRequiredDeviceCapabilities</key>
- <array>
- <string>armv7</string>
- </array>
- <key>UISupportedInterfaceOrientations</key>
- <array>
- <string>UIInterfaceOrientationPortrait</string>
- </array>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
- </dict>
- </plist>
|