Info.plist 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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>zh_CN</string>
  7. <key>CFBundleDisplayName</key>
  8. <string>${XCCONFIG_BUNDLE_NAME}</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>CFBundleLocalizations</key>
  16. <array>
  17. <string>zh_CN</string>
  18. </array>
  19. <key>CFBundleName</key>
  20. <string>${XCCONFIG_BUNDLE_NAME}</string>
  21. <key>CFBundlePackageType</key>
  22. <string>APPL</string>
  23. <key>CFBundleShortVersionString</key>
  24. <string>1.0.0</string>
  25. <key>CFBundleSignature</key>
  26. <string>????</string>
  27. <key>CFBundleURLTypes</key>
  28. <array>
  29. <dict>
  30. <key>CFBundleTypeRole</key>
  31. <string>Editor</string>
  32. <key>CFBundleURLSchemes</key>
  33. <array>
  34. <string>nim</string>
  35. </array>
  36. </dict>
  37. </array>
  38. <key>CFBundleVersion</key>
  39. <string>1</string>
  40. <key>LSApplicationCategoryType</key>
  41. <string></string>
  42. <key>LSApplicationQueriesSchemes</key>
  43. <array>
  44. <string>alipayauath</string>
  45. <string>safepay</string>
  46. <string>alipay</string>
  47. </array>
  48. <key>LSRequiresIPhoneOS</key>
  49. <true/>
  50. <key>NSAppTransportSecurity</key>
  51. <dict>
  52. <key>NSAllowsArbitraryLoads</key>
  53. <true/>
  54. </dict>
  55. <key>NSCameraUsageDescription</key>
  56. <string>谁说想使用您的摄像头</string>
  57. <key>NSContactsUsageDescription</key>
  58. <string>谁说想使用您的通讯录</string>
  59. <key>NSLocationAlwaysUsageDescription</key>
  60. <string>谁说想使用您的地理位置信息</string>
  61. <key>NSLocationWhenInUseDescription</key>
  62. <string>谁说想使用您的地理位置信息</string>
  63. <key>NSMicrophoneUsageDescription</key>
  64. <string>谁说想使用您的麦克风</string>
  65. <key>NSPhotoLibraryUsageDescription</key>
  66. <string>谁说想使用您的相册</string>
  67. <key>UIBackgroundModes</key>
  68. <array>
  69. <string>audio</string>
  70. </array>
  71. <key>UIFileSharingEnabled</key>
  72. <true/>
  73. <key>UILaunchStoryboardName</key>
  74. <string>LaunchScreen</string>
  75. <key>UIMainStoryboardFile</key>
  76. <string>Main</string>
  77. <key>UIRequiredDeviceCapabilities</key>
  78. <array>
  79. <string>armv7</string>
  80. </array>
  81. <key>UISupportedInterfaceOrientations</key>
  82. <array>
  83. <string>UIInterfaceOrientationPortrait</string>
  84. </array>
  85. <key>UIViewControllerBasedStatusBarAppearance</key>
  86. <false/>
  87. </dict>
  88. </plist>