When I launch a MacOS application, I see errors on the console
com.myAppBundle: Unsatisfied entitlements: com.apple.security.application-groups
Disallowing: com.myAppBundle
However, the application seems to be working fine, and I have rights files with these values:
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.application-groups</key>
<array>
<string>$(TeamIdentifierPrefix)group</string>
</array>
So why am I getting the "Unsatisfied Rights" error?
Edit:
For iOS applications, in addition to the Features tab, you must add application groups to your Apple Developer account. But there is no such option for OSX applications
source
share