Files
imexrps/assets/entitlements.mac.plist
2025-02-19 16:04:57 -08:00

25 lines
983 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>
<!-- Allows Just-In-Time compilation required by V8 JavaScript engine in Electron -->
<key>com.apple.security.cs.allow-jit</key>
<true/>
<!-- This is needed for the V8 JavaScript engine to function properly -->
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<!-- Allows network connections -->
<key>com.apple.security.network.client</key>
<true/>
<!-- Uncomment to allow read and write access to files explicitly selected by the user through system dialogs -->
<!-- <key>com.apple.security.files.user-selected.read-write</key>
<true/> -->
<!-- Uncomment to allow read and write access to the user's Downloads directory -->
<!-- <key>com.apple.security.files.downloads.read-write</key>
<true/> -->
</dict>
</plist>