84 lines
2.5 KiB
Plaintext
Executable File
84 lines
2.5 KiB
Plaintext
Executable File
<?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>
|
|
<!-- Bundle 标识符配置 -->
|
|
<key>CFBundleIdentifier</key>
|
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
|
|
<!-- 应用基本信息 -->
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>HiFastVPN</string>
|
|
<key>CFBundleName</key>
|
|
<string>HiFastVPN</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>$(EXECUTABLE_NAME)</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>AppIcon</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
|
|
<!-- 版本信息 -->
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>$(FLUTTER_BUILD_NAME)</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>$(FLUTTER_BUILD_NUMBER)</string>
|
|
|
|
<!-- 系统要求 -->
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
|
|
|
|
<!-- 应用类型配置 -->
|
|
<key>NSPrincipalClass</key>
|
|
<string>NSApplication</string>
|
|
<key>NSMainNibFile</key>
|
|
<string>MainMenu</string>
|
|
|
|
<!-- 高分辨率支持 -->
|
|
<key>NSHighResolutionCapable</key>
|
|
<true/>
|
|
|
|
<!-- 支持 Apple Silicon -->
|
|
<key>LSArchitecturePriority</key>
|
|
<array>
|
|
<string>arm64</string>
|
|
<string>x86_64</string>
|
|
</array>
|
|
|
|
<!-- 网络配置 -->
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsArbitraryLoads</key>
|
|
<true/>
|
|
</dict>
|
|
|
|
<!-- 隐私权限声明 -->
|
|
<key>NSAppleEventsUsageDescription</key>
|
|
<string>HiFastVPN needs access to system events to manage windows and system proxy settings.</string>
|
|
<key>NSUserNotificationUsageDescription</key>
|
|
<string>HiFastVPN needs permission to send notifications about VPN connection status.</string>
|
|
<key>NSSystemAdministrationUsageDescription</key>
|
|
<string>HiFastVPN needs administrator privileges to configure system proxy settings.</string>
|
|
<key>NSPhotoLibraryAddUsageDescription</key>
|
|
<string>我们需要您的同意才能将图片保存到相册</string>
|
|
<key>NSPhotoLibraryUsageDescription</key>
|
|
<string>我们需要您的同意才能访问相册</string>
|
|
|
|
<!-- 版权信息 -->
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>Copyright © 2024 HiFastVPN. All rights reserved.</string>
|
|
|
|
<!-- 应用分类 (Mac App Store) -->
|
|
<key>LSApplicationCategoryType</key>
|
|
<string>public.app-category.utilities</string>
|
|
|
|
<!-- 允许从任何来源打开 (开发阶段) -->
|
|
<key>LSUIElement</key>
|
|
<false/>
|
|
</dict>
|
|
</plist>
|