Info.plist 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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>CFBundleAllowMixedLocalizations</key>
  6. <true/>
  7. <key>CFBundleDevelopmentRegion</key>
  8. <string>$(DEVELOPMENT_LANGUAGE)</string>
  9. <key>CFBundleDisplayName</key>
  10. <string>$(PRODUCT_NAME)</string>
  11. <key>CFBundleExecutable</key>
  12. <string>$(EXECUTABLE_NAME)</string>
  13. <key>CFBundleIdentifier</key>
  14. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  15. <key>CFBundleInfoDictionaryVersion</key>
  16. <string>6.0</string>
  17. <key>CFBundleName</key>
  18. <string>$(PRODUCT_NAME)</string>
  19. <key>CFBundlePackageType</key>
  20. <string>APPL</string>
  21. <key>CFBundleShortVersionString</key>
  22. <string>$(MARKETING_VERSION)</string>
  23. <key>CFBundleURLTypes</key>
  24. <array>
  25. <dict>
  26. <key>CFBundleURLSchemes</key>
  27. <array>
  28. <string>wildfirechat</string>
  29. </array>
  30. </dict>
  31. </array>
  32. <key>CFBundleVersion</key>
  33. <string>$(CURRENT_PROJECT_VERSION)</string>
  34. <key>ITSAppUsesNonExemptEncryption</key>
  35. <false/>
  36. <key>LSRequiresIPhoneOS</key>
  37. <true/>
  38. <key>NSAppTransportSecurity</key>
  39. <dict>
  40. <key>NSAllowsArbitraryLoads</key>
  41. <true/>
  42. </dict>
  43. <key>NSAppleMusicUsageDescription</key>
  44. <string>应用在音视频电话来电时需要播放铃声或用户播放语音消息</string>
  45. <key>NSCameraUsageDescription</key>
  46. <string>应用在拍摄图片发送,修改头像或扫描二维码时需要使用相机</string>
  47. <key>NSLocationWhenInUseUsageDescription</key>
  48. <string>应用在发送位置消息时需要访问位置信息</string>
  49. <key>NSMicrophoneUsageDescription</key>
  50. <string>应用在音视频通话过程中或者录制语音消息时需要使用麦克风</string>
  51. <key>NSPhotoLibraryAddUsageDescription</key>
  52. <string>应用需要此权限保存图片消息中的图片</string>
  53. <key>NSPhotoLibraryUsageDescription</key>
  54. <string>应用在发送图片消息时需要访问相册</string>
  55. <key>PHPhotoLibraryPreventAutomaticLimitedAccessAlert</key>
  56. <true/>
  57. <key>UIBackgroundModes</key>
  58. <array>
  59. <string>audio</string>
  60. <string>remote-notification</string>
  61. <string>voip</string>
  62. </array>
  63. <key>UILaunchStoryboardName</key>
  64. <string>LaunchScreen</string>
  65. <key>UIMainStoryboardFile</key>
  66. <string>Main</string>
  67. <key>UIRequiredDeviceCapabilities</key>
  68. <array>
  69. <string>armv7</string>
  70. </array>
  71. <key>UISupportedInterfaceOrientations</key>
  72. <array>
  73. <string>UIInterfaceOrientationPortrait</string>
  74. </array>
  75. <key>UISupportedInterfaceOrientations~ipad</key>
  76. <array>
  77. <string>UIInterfaceOrientationPortrait</string>
  78. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  79. <string>UIInterfaceOrientationLandscapeLeft</string>
  80. <string>UIInterfaceOrientationLandscapeRight</string>
  81. </array>
  82. </dict>
  83. </plist>