No hard-coded entitlements
This commit is contained in:
parent
297de854f1
commit
3e4a3748cb
|
|
@ -1,18 +1,13 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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">
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>com.apple.security.app-sandbox</key>
|
<!-- {% for k, v in cookiecutter.options.macos_entitlements.items() %} -->
|
||||||
<false/>
|
<key>{{ k }}</key>
|
||||||
<key>com.apple.security.cs.allow-jit</key>
|
<!-- {% if v == True %} -->
|
||||||
<true/>
|
<true />
|
||||||
<key>com.apple.security.network.server</key>
|
<!-- {% elif v == False %} -->
|
||||||
<true/>
|
<false />
|
||||||
<key>com.apple.security.network.client</key>
|
<!-- {% endif %} {% endfor %} -->
|
||||||
<true/>
|
</dict>
|
||||||
<key>com.apple.security.device.audio-input</key>
|
</plist>
|
||||||
<true/>
|
|
||||||
<key>com.apple.security.personal-information.location</key>
|
|
||||||
<true/>
|
|
||||||
</dict>
|
|
||||||
</plist>
|
|
||||||
|
|
@ -2,14 +2,6 @@
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>com.apple.security.app-sandbox</key>
|
|
||||||
<false />
|
|
||||||
<key>com.apple.security.network.client</key>
|
|
||||||
<true />
|
|
||||||
<key>com.apple.security.device.audio-input</key>
|
|
||||||
<true />
|
|
||||||
<key>com.apple.security.personal-information.location</key>
|
|
||||||
<true />
|
|
||||||
<!-- {% for k, v in cookiecutter.options.macos_entitlements.items() %} -->
|
<!-- {% for k, v in cookiecutter.options.macos_entitlements.items() %} -->
|
||||||
<key>{{ k }}</key>
|
<key>{{ k }}</key>
|
||||||
<!-- {% if v == True %} -->
|
<!-- {% if v == True %} -->
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue