Files
xianyan/macos/Runner/Release.entitlements
Developer 1a42e347cf build: 修复iOS/macOS构建配置,适配macOS Keychain问题
1. 添加Pods依赖配置到Xcode工作区
2. 调整macOS权限配置,临时替换Keychain为shared_preferences
3. 重构secure_storage适配macOS兼容性问题
4. 整理iOS权限配置,移除重复声明
5. 更新插件依赖和Podfile配置
2026-05-22 05:00:41 +08:00

25 lines
710 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>
<true/>
<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/>
<key>com.apple.security.files.user-selected.read-only</key>
<true/>
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<key>com.apple.security.keychain</key>
<true/>
<key>keychain-access-groups</key>
<array>
<string>$(AppIdentifierPrefix)$(CFBundleIdentifier)</string>
</array>
</dict>
</plist>