2025-09-06 15:42:26 +08:00

90 lines
3.3 KiB
Plaintext

<?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>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>$(BUNDLE_DISPLAY_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>CFBundleName</key>
<string>$(BUNDLE_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
<!-- 蓝牙权限说明 -->
<!-- iOS 13+ 蓝牙使用权限 -->
<key>NSBluetoothAlwaysUsageDescription</key>
<string>应用需要使用蓝牙功能来搜索和连接设备,实现设备配对和数据传输</string>
<!-- iOS 12及以下蓝牙外设权限 -->
<key>NSBluetoothPeripheralUsageDescription</key>
<string>应用需要使用蓝牙外设功能来连接和管理设备</string>
<!-- 位置权限说明 -->
<!-- iOS 11+ 使用时位置权限 -->
<key>NSLocationWhenInUseUsageDescription</key>
<string>应用需要位置权限来搜索附近的蓝牙设备</string>
<!-- iOS 11+ 始终位置权限 -->
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>应用需要位置权限来搜索附近的蓝牙设备</string>
<!-- iOS 10及以下始终位置权限 -->
<key>NSLocationAlwaysUsageDescription</key>
<string>应用需要位置权限来搜索附近的蓝牙设备</string>
<!-- 相机权限说明(如果后续需要) -->
<key>NSCameraUsageDescription</key>
<string>应用需要相机权限来扫描二维码</string>
<!-- 麦克风权限说明(如果后续需要) -->
<key>NSMicrophoneUsageDescription</key>
<string>应用需要麦克风权限来录制音频</string>
<!-- 通知权限说明 -->
<key>NSUserNotificationAlertStyle</key>
<string>banner</string>
<!-- 支持的后台模式 -->
<key>UIBackgroundModes</key>
<array>
<string>bluetooth-central</string>
<string>bluetooth-peripheral</string>
</array>
</dict>
</plist>