Files
xianyan/macos/Runner/Info.plist
Developer 88a3f6d65f feat: 新增仪表盘页面与macOS多项优化
1. 新增TDashboard翻译类型与多语言文案
2. 完善macOS权限管理与Impeller渲染适配
3. 更新服务器部署配置与协议文件上传脚本
4. 修复翻译导入服务与根类型编译问题
2026-06-26 06:34:05 +08:00

98 lines
3.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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>CFBundleLocalizations</key>
<array>
<string>en</string>
<string>zh-Hans</string>
<string>zh-Hant</string>
<string>ja</string>
<string>ko</string>
</array>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleDisplayName</key>
<string>闲言</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>闲言</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.lifestyle</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>NSHumanReadableCopyright</key>
<string>$(PRODUCT_COPYRIGHT)</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>闲言需要访问您的相册以选择和保存壁纸图片。</string>
<!-- 相机:扫码/拍照/OCR 需要 -->
<key>NSCameraUsageDescription</key>
<string>闲言需要使用相机以扫描二维码、拍摄照片并生成卡片。</string>
<!-- 麦克风:语音录制/转文字 需要 -->
<key>NSMicrophoneUsageDescription</key>
<string>闲言需要使用麦克风以录制语音并转写为文字。</string>
<!-- 定位permission_handler 依赖链引用 CoreLocation需声明用途 -->
<key>NSLocationUsageDescription</key>
<string>闲言仅在必要时使用定位以提供 IP 大致区域信息,不会获取精确 GPS 位置。</string>
<!-- FLTEnableImpeller启用 Impeller 渲染引擎macOS 官方方式)
注意:此 key 为静态值,仅在 debug/profile 模式下可被 setenv("FLUTTER_ENGINE_SWITCH_0") 覆盖。
release 模式下以此值为准。Apple Silicon 默认开启Intel Mac 由用户在设置中关闭后需重启。 -->
<key>FLTEnableImpeller</key>
<true/>
<!-- URL Scheme — 供 xianyan:// 深度链接跳转 -->
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>apps.xy.xianyan</string>
<key>CFBundleURLSchemes</key>
<array>
<string>xianyan</string>
</array>
</dict>
</array>
<!-- 文档浏览器支持 — file_picker 导入字体/ZIP 所需 -->
<key>UISupportsDocumentBrowser</key>
<true/>
<key>LSSupportsOpeningDocumentsInPlace</key>
<true/>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>Font File</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>LSItemContentTypes</key>
<array>
<string>public.truetype-ttf-font</string>
<string>public.opentype-font</string>
<string>com.pkware.zip-archive</string>
</array>
</dict>
</array>
<!-- 加密出口合规 — 声明不使用非豁免加密跳过App Store Connect合规问卷 -->
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
</dict>
</plist>