748a3b8a45
去掉 Vpn 后缀:macOS 主 app + RunnerTests + Debug/Release entitlements 的 keychain-access-groups 统一为 com.pangolin.pangolin(便于 Apple 签名注册)。 iOS/Android 暂未改(iOS 涉 App Group + PacketTunnel 扩展,需统一时单独处理)。 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
20 lines
624 B
XML
20 lines
624 B
XML
<?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>com.apple.security.app-sandbox</key>
|
|
<false/>
|
|
<key>com.apple.security.cs.allow-jit</key>
|
|
<true/>
|
|
<key>com.apple.security.network.client</key>
|
|
<true/>
|
|
<key>com.apple.security.network.server</key>
|
|
<true/>
|
|
<!-- flutter_secure_storage: Data Protection Keychain 需要此 entitlement,否则返回 -34018 -->
|
|
<key>keychain-access-groups</key>
|
|
<array>
|
|
<string>$(AppIdentifierPrefix)com.pangolin.pangolin</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|