12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?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>zh_CN</string>
- <key>CFBundleDisplayName</key>
- <string>${XCCONFIG_BUNDLE_NAME}</string>
- <key>CFBundleExecutable</key>
- <string>$(EXECUTABLE_NAME)</string>
- <key>CFBundleIdentifier</key>
- <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
- <key>CFBundleInfoDictionaryVersion</key>
- <string>6.0</string>
- <key>CFBundleLocalizations</key>
- <array>
- <string>zh_CN</string>
- </array>
- <key>CFBundleName</key>
- <string>${XCCONFIG_BUNDLE_NAME}</string>
- <key>CFBundlePackageType</key>
- <string>APPL</string>
- <key>CFBundleShortVersionString</key>
- <string>1.0.0</string>
- <key>CFBundleSignature</key>
- <string>????</string>
- <key>CFBundleURLTypes</key>
- <array>
- <dict>
- <key>CFBundleTypeRole</key>
- <string>Editor</string>
- <key>CFBundleURLSchemes</key>
- <array>
- <string>nim</string>
- </array>
- </dict>
- </array>
- <key>CFBundleVersion</key>
- <string>1</string>
- <key>LSApplicationCategoryType</key>
- <string></string>
- <key>LSApplicationQueriesSchemes</key>
- <array>
- <string>alipayauath</string>
- <string>safepay</string>
- <string>alipay</string>
- </array>
- <key>LSRequiresIPhoneOS</key>
- <true/>
- <key>NSAppTransportSecurity</key>
- <dict>
- <key>NSAllowsArbitraryLoads</key>
- <true/>
- </dict>
- <key>NSCameraUsageDescription</key>
- <string>谁说想使用您的摄像头</string>
- <key>NSContactsUsageDescription</key>
- <string>谁说想使用您的通讯录</string>
- <key>NSLocationAlwaysUsageDescription</key>
- <string>谁说想使用您的地理位置信息</string>
- <key>NSLocationWhenInUseDescription</key>
- <string>谁说想使用您的地理位置信息</string>
- <key>NSMicrophoneUsageDescription</key>
- <string>谁说想使用您的麦克风</string>
- <key>NSPhotoLibraryUsageDescription</key>
- <string>谁说想使用您的相册</string>
- <key>UIBackgroundModes</key>
- <array>
- <string>audio</string>
- </array>
- <key>UIFileSharingEnabled</key>
- <true/>
- <key>UILaunchStoryboardName</key>
- <string>LaunchScreen</string>
- <key>UIMainStoryboardFile</key>
- <string>Main</string>
- <key>UIRequiredDeviceCapabilities</key>
- <array>
- <string>armv7</string>
- </array>
- <key>UISupportedInterfaceOrientations</key>
- <array>
- <string>UIInterfaceOrientationPortrait</string>
- </array>
- <key>UIViewControllerBasedStatusBarAppearance</key>
- <false/>
- </dict>
- </plist>
|