Hi, I have requested USB Transport and UserClient Access successfully, but the applications containing the entitlemet don't work.
- driver.dext: User-mode usb driver
- Driver.app: Application to install the user-mode driver
Error Termination Reason: Namespace CODESIGNING, Code 0x01
・entitlement file of driver.dext
<key>com.apple.developer.driverkit</key>
<true/>
<key>com.apple.developer.driverkit.transport.usb</key>
<array>
<dict>
<key>idVendor</key>
<integer>****</integer>
</dict>
</array>
・entitlement file of Driver.app
<key>com.apple.developer.driverkit.userclient-access</key>
<array>
<string>****bundle id of driver.dext</string>
</array>
・driver.dext provisioning profile CMS command
<key>Entitlements</key>
<dict>
<key>com.apple.developer.driverkit.transport.usb</key>
<array>
</array>
<key>com.apple.developer.driverkit</key>
<true/>
<key>com.apple.application-identifier</key> <string>bundle id</string>
<key>keychain-access-groups</key>
<array>
<string>****</string>
</array>
<key>com.apple.developer.team-identifier</key>
<string>****</string>
</dict>
・Driver.app provisioning profile CMS command
<key>Entitlements</key>
<dict>
<key>com.apple.developer.system-extension.install</key>
<true/>
<key>com.apple.application-identifier</key> <string>bundle ID</string>
<key>keychain-access-groups</key>
<array>
<string>****.*</string>
</array>
<key>com.apple.developer.team-identifier</key>
<string>****</string>
</dict>
Would you let me know the solutions if you have?