12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?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>NSPhotoLibraryUsageDescription</key>
- <string>$(PRODUCT_NAME) would like access to your photo gallery</string>
- <key>NSCameraUsageDescription</key>
- <string>$(PRODUCT_NAME) would like to use your camera</string>
- <key>NSPhotoLibraryAddUsageDescription</key>
- <string>$(PRODUCT_NAME) would like to save photos to your photo gallery</string>
- <key>NSMicrophoneUsageDescription</key>
- <string>$(PRODUCT_NAME) would like to use your microphone (for videos)</string>
- <key>CFBundleDevelopmentRegion</key>
- <string>en</string>
- <key>CFBundleDisplayName</key>
- <string>ReactMapDemo</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>NSExceptionDomains</key>
- <dict>
- <key>localhost</key>
- <dict>
- <key>NSExceptionAllowsInsecureHTTPLoads</key>
- <true/>
- </dict>
- </dict>
- </dict>
- <key>NSLocationWhenInUseUsageDescription</key>
- <string/>
- <key>UILaunchStoryboardName</key>
- <string>LaunchScreen</string>
- <key>UIRequiredDeviceCapabilities</key>
- <array>
- <string>armv7</string>
- </array>
- <key>UISupportedInterfaceOrientations</key>
- <array>
- <string>UIInterfaceOrientationPortrait</string>
- <string>UIInterfaceOrientationLandscapeLeft</string>
- <string>UIInterfaceOrientationLandscapeRight</string>
- </array>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
- <key>UIAppFonts</key>
- <array>
- <string>AntDesign.ttf</string>
- <string>Entypo.ttf</string>
- <string>EvilIcons.ttf</string>
- <string>Feather.ttf</string>
- <string>FontAwesome.ttf</string>
- <string>FontAwesome5_Brands.ttf</string>
- <string>FontAwesome5_Regular.ttf</string>
- <string>FontAwesome5_Solid.ttf</string>
- <string>Fontisto.ttf</string>
- <string>Foundation.ttf</string>
- <string>Ionicons.ttf</string>
- <string>MaterialCommunityIcons.ttf</string>
- <string>MaterialIcons.ttf</string>
- <string>Octicons.ttf</string>
- <string>SimpleLineIcons.ttf</string>
- <string>Zocial.ttf</string>
- </array>
- </dict>
- </plist>
|