-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAIMemoryReader.entitlements
More file actions
25 lines (21 loc) · 961 Bytes
/
Copy pathAIMemoryReader.entitlements
File metadata and controls
25 lines (21 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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>
<!-- Mac App Store requires sandboxing. -->
<key>com.apple.security.app-sandbox</key>
<true/>
<!-- Open / Save panels: read-write access to user-selected files and folders. -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<!-- Persist user-granted folder access across launches via security-scoped bookmarks. -->
<key>com.apple.security.files.bookmarks.app-scope</key>
<true/>
<key>com.apple.security.files.bookmarks.document-scope</key>
<true/>
<!-- iCloud KV-store removed for MAS v1 submission — re-enable after adding
the iCloud Services capability to the App ID in developer.apple.com. -->
<!-- No network access. AIMR is local-only by design. -->
<!-- No camera, microphone, location, contacts, calendar, photos. -->
</dict>
</plist>