-
Notifications
You must be signed in to change notification settings - Fork 860
Expand file tree
/
Copy pathentitlements.mac.plist
More file actions
33 lines (27 loc) · 1.01 KB
/
entitlements.mac.plist
File metadata and controls
33 lines (27 loc) · 1.01 KB
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
26
27
28
29
30
31
32
33
<?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>
<!-- Required for Electron apps -->
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<!-- Allow JIT compilation for V8 -->
<key>com.apple.security.cs.allow-jit</key>
<true/>
<!-- Required for Hardened Runtime -->
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
<!-- Network access for WebSocket/HTTP -->
<key>com.apple.security.network.client</key>
<true/>
<!-- Allow spawning child processes (for Gateway) -->
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
<!-- File access for user data -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<!-- Downloads folder access -->
<key>com.apple.security.files.downloads.read-write</key>
<true/>
</dict>
</plist>