Files
HereIAm/entitlements.plist
Jerico Thomas d93ce669b1 1.0.1
2025-08-01 12:29:34 -04:00

30 lines
931 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>
<!-- Allow the app to control other applications -->
<key>com.apple.security.automation.apple-events</key>
<true/>
<!-- Allow accessibility API access -->
<key>com.apple.security.personal-information.accessibility</key>
<true/>
<!-- Allow input monitoring (for PyAutoGUI) -->
<key>com.apple.security.device.microphone</key>
<false/>
<key>com.apple.security.device.camera</key>
<false/>
<!-- Allow network access if needed -->
<key>com.apple.security.network.client</key>
<true/>
<!-- Allow file system access -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<key>com.apple.security.files.downloads.read-write</key>
<true/>
</dict>
</plist>