Read package identifier and app group ID from Info.plist at runtime via AppConfiguration. This enables SFM.System to use TeamID-prefixed app group format required by macOS Sequoia, fixing the privacy prompt when accessing app group data.
62 lines
1.6 KiB
Plaintext
62 lines
1.6 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>BasePackageIdentifier</key>
|
|
<string>$(BASE_PACKAGE_IDENTIFIER)</string>
|
|
<key>AppGroupIdentifier</key>
|
|
<string>$(APP_GROUP_IDENTIFIER)</string>
|
|
<key>BGTaskSchedulerPermittedIdentifiers</key>
|
|
<array>
|
|
<string>$(BASE_PACKAGE_IDENTIFIER).update_profiles</string>
|
|
</array>
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Viewer</string>
|
|
<key>CFBundleURLIconFile</key>
|
|
<string>AppIcon.icns</string>
|
|
<key>CFBundleURLName</key>
|
|
<string>sing-box</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>sing-box</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
<key>ITSAppUsesNonExemptEncryption</key>
|
|
<false/>
|
|
<key>NSApplicationServices</key>
|
|
<dict>
|
|
<key>Browses</key>
|
|
<array>
|
|
<dict>
|
|
<key>NSApplicationServiceIdentifier</key>
|
|
<string>sing-box:profile</string>
|
|
<key>NSApplicationServicePlatformSupport</key>
|
|
<array>
|
|
<string>iOS</string>
|
|
<string>iPadOS</string>
|
|
</array>
|
|
<key>NSApplicationServiceUsageDescription</key>
|
|
<string>Import sing-box profile from other devices</string>
|
|
</dict>
|
|
</array>
|
|
</dict>
|
|
<key>UIBackgroundModes</key>
|
|
<array>
|
|
<string>fetch</string>
|
|
</array>
|
|
<key>CFBundleLocalizations</key>
|
|
<array>
|
|
<string>en</string>
|
|
<string>zh_CN</string>
|
|
</array>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>en</string>
|
|
<key>NSLocalNetworkUsageDescription</key>
|
|
<string>As a universal proxy platform, sing-box configures routing according to your configuration.</string>
|
|
</dict>
|
|
</plist>
|