Info.plist 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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>$(DEVELOPMENT_LANGUAGE)</string>
  7. <key>APIBaseURL</key>
  8. <string>https://api.ccdw.life/celestia-trace/v1</string>
  9. <key>CFBundleDisplayName</key>
  10. <string>星痕 CelestiaTrace</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>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
  21. <key>CFBundleShortVersionString</key>
  22. <string>$(MARKETING_VERSION)</string>
  23. <key>CFBundleVersion</key>
  24. <string>$(CURRENT_PROJECT_VERSION)</string>
  25. <key>LSRequiresIPhoneOS</key>
  26. <true/>
  27. <key>NSSupportsLiveActivities</key>
  28. <true/>
  29. <key>NSBluetoothAlwaysUsageDescription</key>
  30. <string>需要蓝牙权限以搜索、绑定并使用微光(Spark)录音设备</string>
  31. <key>NSBluetoothPeripheralUsageDescription</key>
  32. <string>需要蓝牙权限以与微光(Spark)传输录音数据</string>
  33. <key>NSCameraUsageDescription</key>
  34. <string>需要相机权限以在现场录制中拍摄照片记录</string>
  35. <key>NSMicrophoneUsageDescription</key>
  36. <string>需要麦克风权限以使用 iPhone 进行现场录音</string>
  37. <key>NSLocationWhenInUseUsageDescription</key>
  38. <string>需要定位权限以在笔记和照片记录中插入所在位置</string>
  39. <key>NSPhotoLibraryUsageDescription</key>
  40. <string>需要相册权限以选择照片记录</string>
  41. <key>UIBackgroundModes</key>
  42. <array>
  43. <string>audio</string>
  44. <string>bluetooth-central</string>
  45. </array>
  46. <key>CFBundleURLTypes</key>
  47. <array>
  48. <dict>
  49. <key>CFBundleTypeRole</key>
  50. <string>Editor</string>
  51. <key>CFBundleURLSchemes</key>
  52. <array>
  53. <string>celestiatrace</string>
  54. </array>
  55. </dict>
  56. </array>
  57. <key>UILaunchStoryboardName</key>
  58. <string>LaunchScreen</string>
  59. <key>UISupportedInterfaceOrientations</key>
  60. <array>
  61. <string>UIInterfaceOrientationPortrait</string>
  62. </array>
  63. </dict>
  64. </plist>