-
Notifications
You must be signed in to change notification settings - Fork 7
/
entitlements.plist
51 lines (42 loc) · 1.49 KB
/
entitlements.plist
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?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 JIT (Just In Time) compilation -->
<key>com.apple.security.cs.allow-jit</key>
<true/>
<!-- Allow unsigned executable memory -->
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<!-- Allow DYLD environment variables -->
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
<!-- Disable Library Validation -->
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
<!-- Debugging entitlements (remove in production) -->
<key>com.apple.security.get-task-allow</key>
<true/>
<!-- Networking entitlements -->
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<!-- File Access entitlements -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<key>com.apple.security.files.downloads.read-write</key>
<true/>
<key>com.apple.security.files.all.read-write</key>
<true/>
<!-- Enable audio input -->
<key>com.apple.security.device.audio-input</key>
<false/>
<!-- Enable camera input -->
<key>com.apple.security.device.camera</key>
<false/>
<!-- Access to location services -->
<key>com.apple.security.personal-information.location</key>
<false/>
</dict>
</plist>