Unsatisfied entitlements when moving to macOS13

My app, which uses the network extension, compiles and runs just fine in 12.x but upon moving to 13 I am now getting the following error: com.cradlepoint.netcloud.agent.extension: Unsatisfied entitlements: com.apple.security.application-groups

Any suggestions or pointers would be appreciated. Thank you

This is log noise. This has come up a bunch of times before, so I finally sat down and wrote a complete explanation: App Groups: macOS vs iOS: Fight!

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

I got the same bug as yours, my project compiles and runs just fine in MacOS12.6 but upon moving to MacOS13.  I am now getting the error:

Unsatisfied entitlements: com.apple.developer.driverkit.transport.pci

That is a very different problem. This thread is about the com.apple.security.application-groups entitlement. That’s an unrestricted entitlement, per the definition in TN3125 Inside Code Signing: Provisioning Profiles, and thus does not have to be authorised by a provisioning profile. In contrast, com.apple.developer.driverkit.transport.pci is restricted, so you’ll need a profile to authorise its use.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Unsatisfied entitlements when moving to macOS13
 
 
Q