mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
Use Apple developer certificates for code signing and prepare DMG for notarization. Tweak the app to match the App Store requirements Add an entitlements.plist com.apple.security.app-sandbox: true com.apple.security.network.client: true com.apple.security.files.user-selected.read-write: true
12 lines
345 B
Plaintext
12 lines
345 B
Plaintext
<!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.network.client</key>
|
|
<true/>
|
|
<key>com.apple.security.files.user-selected.read-write</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|