Confirmed root cause via tccd's own log output: the hardened-runtime hardened-runtime prompting policy checks for com.apple.security.personal-information.addressbook (the Contacts framework's TCC service is still internally named kTCCServiceAddressBook, a holdover from the old AddressBook framework), not com.apple.security.personal-information.contacts as the entitlements file had. With the correct key, tccd allows the prompt and access is now granted correctly on both macOS 27 beta and 26.5.1 stable — this was never an OS bug, notarization requirement, or beta-only issue. Also keeps the fuller CNError domain/code/userInfo logging added while diagnosing this, in case Contacts TCC issues resurface.
21 lines
637 B
XML
21 lines
637 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>
|
|
<key>com.apple.security.app-sandbox</key>
|
|
<false/>
|
|
<key>com.apple.security.network.client</key>
|
|
<true/>
|
|
<key>com.apple.security.network.server</key>
|
|
<false/>
|
|
<key>com.apple.security.personal-information.calendars</key>
|
|
<true/>
|
|
<key>com.apple.security.personal-information.reminders</key>
|
|
<true/>
|
|
<key>com.apple.security.personal-information.addressbook</key>
|
|
<true/>
|
|
<key>com.apple.security.personal-information.location</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|