mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-06 02:30:47 -08:00
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
16 lines
No EOL
538 B
Text
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> |