Files
xianyan/ios/Runner/Info.plist
Developer 1b1a3ef450 chore: 清理项目中多余的示例、依赖和资源文件
本次提交删除了大量冗余的平台配置文件、示例项目构建产物、测试资源文件以及第三方插件的无关代码,包括:
1. 移除了fluttertoast、liquid_glass_easy等插件的全量示例项目文件
2. 删除了本地依赖的ohos模块缓存和构建配置
3. 清理了各种平台的图标、资源文件和gitignore配置
4. 调整了主项目安卓最小SDK版本配置
5. 添加了macos运行需要的权限配置
2026-05-21 20:50:22 +08:00

118 lines
4.5 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>Xianyan</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>xianyan</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/>
<!-- ============================================================ -->
<!-- 权限描述 — 相机 / 扫码 / 拍照 -->
<!-- ============================================================ -->
<key>NSCameraUsageDescription</key>
<string>闲言需要使用相机以拍照制作壁纸、扫描二维码和文件传输扫码配对</string>
<!-- 权限描述 — file_picker / 编辑器选择图片 -->
<key>NSPhotoLibraryUsageDescription</key>
<string>闲言需要访问您的相册以选择图片作为卡片背景</string>
<!-- 权限描述 — 编辑器导出保存到相册 -->
<key>NSPhotoLibraryAddUsageDescription</key>
<string>闲言需要保存编辑好的卡片到您的相册</string>
<!-- 权限描述 — file_picker 选择文件 -->
<key>NSDocumentsFolderUsageDescription</key>
<string>闲言需要访问文件以选择图片和导出内容</string>
<!-- 权限描述 — 麦克风录音 — 语音消息 -->
<key>NSMicrophoneUsageDescription</key>
<string>闲言需要使用麦克风录制语音消息</string>
<!-- 权限描述 — 蓝牙BLE — 文件传输配对 -->
<key>NSBluetoothAlwaysUsageDescription</key>
<string>闲言需要使用蓝牙以发现和配对附近设备进行文件传输</string>
<!-- 权限描述 — NFC — 文件传输触碰配对 -->
<key>NFCReaderUsageDescription</key>
<string>闲言需要使用NFC以触碰配对设备进行文件传输</string>
<!-- 权限描述 — 本地网络 — 设备发现 -->
<key>NSLocalNetworkUsageDescription</key>
<string>闲言需要本地网络权限以发现和连接局域网设备</string>
<!-- ============================================================ -->
<!-- 网络安全 — 允许 HTTP 连接 (开发阶段) -->
<!-- ============================================================ -->
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<!-- ============================================================ -->
<!-- URL Scheme — 让其他App通过 xianyan:// 打开闲言 -->
<!-- ============================================================ -->
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>CFBundleURLName</key>
<string>apps.xy.xianyan</string>
<key>CFBundleURLSchemes</key>
<array>
<string>xianyan</string>
</array>
</dict>
</array>
<!-- ============================================================ -->
<!-- App Group — ShareExtension和主App共享数据 -->
<!-- ============================================================ -->
<key>com.apple.security.application-groups</key>
<array>
<string>group.apps.xy.xianyan.share</string>
</array>
</dict>
</plist>