Post

Replies

Boosts

Views

Activity

iPad does not work while debugging app with Automatic Assessment Configuration
I'm debugging ios app using Automatic Assessment configuration entitlement with ipad. However, while repeatedly running and stopping the app, it crashed during the assessment mode, and now the ipad doesn't work. Because it might be under the assessment mode, I cannot return to the home screen and cannot uninstall the app. Additionally, even when I try to redo the debugging process, it remains stuck on the "installing" stage in xcode, and my iPad is unresponsive. I am unable to force quit it. Is there a way to recover my iPad?
0
0
176
Sep ’24
Lack of Vendor ID for “USB transport" entitlement and Can't find "userclient-access" for AppID
I requested “USB transport " and "userclient-access" entitlements to Apple and they has approved. Apple team said I should create entitlement file and "transport.usb" entitlement should contain Vendor ID. I created also AppID and Provisionig profiles. After that, I build the Xcode project and the application doesn't work. I have two questions. Provisioning profile contains transport.usb entitlement "without" Vendor ID. Should it contain Vendor ID too? When I create AppID, I can choose "Additional Capabilities", but I can not find "userclient-access". How can I set the entitlement?
1
1
1.1k
Feb ’22
Can't see crash logs
I'm developing a Mac OS application. I can see the following error message when I run the application. "You do not have permission to open the application" If the SIP is disable, the crash report is stored in "users\username\Library\Logs\DiagnosticReports". But if the SIP is enable, I cannot see the log in same folder. Do you know where the log is stored? Mac OS 11.2.2
0
0
529
Nov ’21
The entitlement, USB Transport and UserClient Access, doesn't work
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?
1
0
933
Aug ’21
Dext's profile lacks the USB transport entitlement
I'm developing the following files. driver.dext: User-mode driver Driver.app: Application to install the user-mode driver I created new App IDs and provisioning profiles for the executable files. And I added the keys and values of the entitlements. I set the certificates, provisioning profiles and entitlement files in Xcode. The build in Xcode succeeded and the notarization also succeeded by command. But a crash occurs when I execute Driver.app. The crash log says the following message. Termination Reason: Namespace CODESIGNING, Code 0x01 I tried security command and the output shows that the Provisioning Profile lacks the DriverKit USB transport entitlement. But I confirmed the App ID with the DriverKit USB transport capability has the bundle ID, and that the provisioning profile for the dext has the identical bundle ID in the App ID section. Do you have any solution about it? from the security command for Driver.app: <key>Entitlements</key> <dict> <key>com.apple.developer.driverkit</key> <true/> <key>com.apple.developer.system-extension.redistributable</key> <true/> <key>com.apple.developer.driverkit.allow-any-userclient-access</key> <true/> <key>com.apple.developer.driverkit.userclient-access</key> <true/> <key>com.xxxx.driver.xxxxDriver</key> <true/> <key>com.apple.application-identifier</key> <string>xxxxxxxx.***.xx.driver.***</string> <key>keychain-access-groups</key> <array> <string>xxxxxx.*</string> </array> <key>com.apple.developer.team-identifier</key> <string>xxxxxx</string> </dict>
0
0
703
Jul ’21
Notarization warning
Hi, I do the following command to notarize an application. sudo xcrun altool --notarize-app --primary-bundle-id “xxxxx” --username “xxxx@xxxx” --password “xxxx-xxxx-xxxx-xxxx” --file  xxxxxx.zip(application) Then the following warnings are shown. But the notarization succeeds. objc[853]: Class AMSupportURLConnectionDelegate is implemented in both ?? (0x208b24188) and ?? (0x113f3c2b8). One of the two will be used. Which one is undefined. objc[853]: Class AMSupportURLSession is implemented in both ?? (0x208b241d8) and ?? (0x113f3c308). One of the two will be used. Which one is undefined. CFURLRequestSetHTTPCookieStorageAcceptPolicy_block_invoke: no longer implemented and should not be called Why do the warnings occur? Can I ignore these? OS 11.2.2 Xcode 12.4
2
0
1.1k
Jun ’21