fluxer/fluxer_desktop/build_resources/entitlements.mac.inherit.plist
2026-02-17 12:22:36 +00:00

33 lines
1.1 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>
<!-- Required for Electron on arm64 -->
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
<!-- Microphone: need BOTH audio-input (hardened runtime) AND microphone (sandbox) -->
<key>com.apple.security.device.audio-input</key>
<true/>
<key>com.apple.security.device.microphone</key>
<true/>
<!-- Camera -->
<key>com.apple.security.device.camera</key>
<true/>
<!-- Network -->
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<!-- NOTE: No restricted entitlements (associated-domains, application-identifier) here.
This file is for helper apps/frameworks which don't need passkey capabilities. -->
</dict>
</plist>