Skip to content

Commit 4ba4f13

Browse files
committed
A default entitlements.plist vtl template
1 parent 172c373 commit 4ba4f13

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<!--
6+
Allow Execution of JIT-compiled Code Entitlement
7+
https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_cs_allow-jit
8+
-->
9+
<key>com.apple.security.cs.allow-jit</key>
10+
<true/>
11+
<!--
12+
Allow Unsigned Executable Memory Entitlement
13+
https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_cs_allow-unsigned-executable-memory
14+
-->
15+
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
16+
<true/>
17+
<!--
18+
Disable Executable Memory Protection Entitlement
19+
https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_cs_disable-executable-page-protection
20+
-->
21+
<key>com.apple.security.cs.disable-executable-page-protection</key>
22+
<true/>
23+
<!--
24+
Allow DYLD Environment Variables Entitlement
25+
https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_cs_allow-dyld-environment-variables
26+
-->
27+
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
28+
<true/>
29+
<!--
30+
Disable Library Validation Entitlement
31+
https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_cs_disable-library-validation
32+
-->
33+
<key>com.apple.security.cs.disable-library-validation</key>
34+
<true/>
35+
</dict>
36+
</plist>

0 commit comments

Comments
 (0)