I've configured a vpn (packet tunnel) on OSX, but I can't start it because of an entitlement problem
(I already did it on iOS, but on OSX it's not running, although the entitlements suppose to work on both iOS and OSX)
When I run the app, it's imediatly crashes with the error:
... because its use of the com.apple.developer.networking.networkextension entitlement is not allowed
according to this error, the containing app is not allowed to use the entitlements - but why??
But if in the project settings, at the containing app, I remove the path to the entitlement file at Code Signing Entitlements, the app won't crash, but not start the VPN.
To check what's the problem, I ran at the terminal
codesign -d --entitlements :- CatoClient.app
and
codesign -d --entitlements :- CatoClientExtension.appex
In both of them I can see
<array>
<string>packet-tunnel-provider</string>
<string>app-proxy-provider</string>
<string>content-filter-provider</string>
</array>
Any Help would be appreciated