We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2023-11-30 02:31 AM - last edited on 2024-09-17 12:45 PM by Doreena Deng
Hi all
I have been trying to Notarize my addon with notarytool without success.. I have checked my developer credentials, created a new app specific password etc etc and nothing seems to work..
Using "xcrun notarytool info" i get "Successfully received submission info"
But then "status: Invalid"
Has anyone had success with notarytool? since altool was abandoned by Apple on the 1st of November.
I should add that I notarized my addons late October using Altool without any issues
Solved! Go to Solution.
2023-12-01 08:56 AM
Thanks for the help guys..
status: Accepted
Okay, of course it was not the notary tool command it was my code signing.
I had a duplicate key in the key chain that needed deleting.. then I created a new certificate and boom it worked..
Appreciate the help..
Bernd, great tip on the log
kolioi, this is how I have been doing it too, straight in the terminal.. seems the easiest way..
👍
2023-11-30 08:39 AM
Hi Ben,
I'm using notarytool for a while now. But I also remember it being quite some work to switch.
You can get more information about your submission with (include your credentials the same way as for the other notarytool commands):
xcrun notarytool log <submission-id>
Maybe this helps debugging the issue.
Best,
Bernd
2023-11-30 09:45 AM
I have been using notary tool for a couple of months, changed from altool to notary tool. First I sign my file w/ codesign, then I run notarytool like this:
xcrun notarytool submit <your file> --wait --apple-id <your id> --team-id <team id> --password <your password>
Or you can use a keychain profile. And finally I run
xcrun stapler staple <your file>
You can check out this link Customizing the notarization workflow
2023-12-01 08:56 AM
Thanks for the help guys..
status: Accepted
Okay, of course it was not the notary tool command it was my code signing.
I had a duplicate key in the key chain that needed deleting.. then I created a new certificate and boom it worked..
Appreciate the help..
Bernd, great tip on the log
kolioi, this is how I have been doing it too, straight in the terminal.. seems the easiest way..
👍