31 lines
1013 B
Plaintext
31 lines
1013 B
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>
|
||
<!-- Hardened Runtime: 允许使用 JIT(Electron/V8 需要) -->
|
||
<key>com.apple.security.cs.allow-jit</key>
|
||
<true/>
|
||
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
||
<true/>
|
||
<!-- 允许加载不同签名的 framework(开发模式下必需) -->
|
||
<key>com.apple.security.cs.disable-library-validation</key>
|
||
<true/>
|
||
<!-- 摄像头 -->
|
||
<key>com.apple.security.device.camera</key>
|
||
<true/>
|
||
<!-- 麦克风 -->
|
||
<key>com.apple.security.device.microphone</key>
|
||
<true/>
|
||
<key>com.apple.security.device.audio-input</key>
|
||
<true/>
|
||
<!-- USB 设备 -->
|
||
<key>com.apple.security.device.usb</key>
|
||
<true/>
|
||
<!-- 网络 -->
|
||
<key>com.apple.security.network.client</key>
|
||
<true/>
|
||
<key>com.apple.security.network.server</key>
|
||
<true/>
|
||
</dict>
|
||
</plist>
|