-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentitlements.plist
More file actions
26 lines (21 loc) · 818 Bytes
/
Copy pathentitlements.plist
File metadata and controls
26 lines (21 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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>
<!-- Allow outgoing network connections for update checking -->
<key>com.apple.security.network.client</key>
<true/>
<!-- Disable library validation for flexibility -->
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
<!-- Allow JIT compilation (for potential future use) -->
<key>com.apple.security.cs.allow-jit</key>
<false/>
<!-- Allow unsigned executable memory (for ImGui rendering) -->
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<!-- Hardened runtime -->
<key>com.apple.security.get-task-allow</key>
<false/>
</dict>
</plist>