-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathentitlements.mac.plist
More file actions
61 lines (48 loc) · 1.84 KB
/
entitlements.mac.plist
File metadata and controls
61 lines (48 loc) · 1.84 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?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>
<!-- Camera access for webcam recording -->
<key>com.apple.security.device.camera</key>
<true/>
<!-- Microphone access for audio recording -->
<key>com.apple.security.device.microphone</key>
<true/>
<!-- Audio input for system audio capture -->
<key>com.apple.security.device.audio-input</key>
<true/>
<!-- Required for Electron apps with JIT -->
<key>com.apple.security.cs.allow-jit</key>
<true/>
<!-- Required for native modules and dynamic code -->
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<!-- Required for native dependencies -->
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
<!-- Network access for Google Drive integration -->
<key>com.apple.security.network.client</key>
<true/>
<!-- Network server for OAuth callback -->
<key>com.apple.security.network.server</key>
<true/>
<!-- File system access for saving recordings -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<!-- Downloads folder access -->
<key>com.apple.security.files.downloads.read-write</key>
<true/>
<!-- Desktop folder access -->
<key>com.apple.security.files.desktop.read-write</key>
<true/>
<!-- Documents folder access -->
<key>com.apple.security.files.documents.read-write</key>
<true/>
<!-- Disable automatic termination -->
<key>com.apple.security.automation.apple-events</key>
<true/>
<!-- Allow access to system information -->
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
</dict>
</plist>