I am currently unable to install on MacOSX due to the following error.
My app structure is as follows. There are two groups, one is installed and one that installs with an additional extension (connected by plug-in) is not installed.
SystemExtension and NetworkExtension are installed as extensions in the first to be installed, and NetworkExtension and endpoint security are installed in the second connected to a plug-in.
Also, during the installation, I checked the following error in the kernel. "Code has restricted entitlements, but the validation of its code signature failed."
And on the Apple Developer site, I'm registered as a team and I'm using Xcode13 to auto-sign everyone.
When I compared entitlement and embedded.provisionprofile, I didn't find anything unusual.
[entitlement]
[Key] com.apple.application-identifier
[Value]
[String] teamid.com.example.TestAPP.Extension
[Key] com.apple.developer.endpoint-security.client
[Value]
[Bool] true
[Key] com.apple.developer.networking.networkextension
[Value]
[Array]
[String] content-filter-provider
[Key] com.apple.developer.team-identifier
[Value]
[String] teamid
[Key] com.apple.security.get-task-allow
[Value]
[Bool] true
[embedded.provisionprofile]
<key>com.apple.developer.networking.networkextension</key>
<array>
<string>app-proxy-provider</string>
<string>content-filter-provider</string>
<string>packet-tunnel-provider</string>
<string>dns-settings</string>
</array>
<key>com.apple.application-identifier</key>
<string>teamid.com.example.TestAPP.Extension</string>
<key>keychain-access-groups</key>
<array>
<string>teamid.*</string>
</array>
<key>com.apple.developer.team-identifier</key>
<string>teamid</string>
Also, it turns out that I haven't set the value for endpoint-security.client correctly, but this isn't confirmed where to set it in apple developer site.