34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
<?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 compilation for V8 JavaScript engine -->
|
|
<key>com.apple.security.cs.allow-jit</key>
|
|
<true/>
|
|
|
|
<!-- Allow unsigned executable memory (required for Electron) -->
|
|
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
|
<true/>
|
|
|
|
<!-- Allow loading unsigned dylibs -->
|
|
<key>com.apple.security.cs.disable-library-validation</key>
|
|
<true/>
|
|
|
|
<!-- Network access for Matrix communication -->
|
|
<key>com.apple.security.network.client</key>
|
|
<true/>
|
|
|
|
<!-- Microphone access for voice/video calls -->
|
|
<key>com.apple.security.device.audio-input</key>
|
|
<true/>
|
|
|
|
<!-- Camera access for video calls -->
|
|
<key>com.apple.security.device.camera</key>
|
|
<true/>
|
|
|
|
<!-- Screen recording for screen sharing -->
|
|
<key>com.apple.security.screen-recording</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|