TidGi-Desktop/build-resources/entitlements.mac.plist
Quang Lam edcdc7cdff
Fix camera and microphone devices are not accessible (#49)
In a sandboxed app, if you don't have the `com.apple.security.device.microphone` entitlement, your app will not be able to access the microphone. In a hardened app, if you don't have the `com.apple.security.device.audio-input` entitlement, your app will not be able to access the microphone or any audio input using Core Audio. Ref: https://stackoverflow.com/a/57060745
2019-11-28 13:28:00 -06:00

16 lines
No EOL
538 B
Text

<?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>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<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/>
</dict>
</plist>