23 lines
793 B
XML
23 lines
793 B
XML
<?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 access to Photos library via PhotoKit -->
|
|
<key>com.apple.security.personal-information.photos-library</key>
|
|
<true/>
|
|
|
|
<!-- Allow network access for API communication -->
|
|
<key>com.apple.security.network.client</key>
|
|
<true/>
|
|
|
|
<!-- Allow network server for local status server (if needed) -->
|
|
<key>com.apple.security.network.server</key>
|
|
<true/>
|
|
|
|
<!-- Allow keychain access for storing auth tokens -->
|
|
<key>com.apple.security.keychain-access-groups</key>
|
|
<array>
|
|
<string>$(AppIdentifierPrefix)com.lilith.image-assistant</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|