How to notarize on MAC. #3075
raresn
started this conversation in
Guides & Tutorials
Replies: 1 comment 15 replies
-
|
Hi @raresn Which AIR SDK version are you using? And which macOS version? Are you able to check the output of ADT when you do the The new notarytool steps look okay but the error is definitely suggesting a problem with the signing part. (You can probably check that with thanks |
Beta Was this translation helpful? Give feedback.
15 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
So, in the past i had a set of commands that just worked, but now i moved on from altool to the notarytool, and i can't get the app signed.
Here is what i used to do:
1 & 2
AdobeAIRSDK/bin/adt -package -storetype pkcs12 -tsa none -keystore androidMarket.p12 -storepass *** -target bundle Agenda.app Agenda-Desktop.xml AgendaDesktop.swf icons images data -extdir extensions
AdobeAIRSDK/bin/adt -sign -storetype KeychainStore -alias "Developer ID Application: On Time Agenda SRL" -target bundle Agenda.app OnTimeAgenda.app
3
make dmg with the DROP DMG APP
4
xcrun altool --type osx --file OnTimeAgenda.dmg --primary-bundle-id ro.fxstudio.AgendaDesktop --notarize-app --username my_email@mail.com --asc-provider team_id
5
enter this password when prompted: APP SPECIFIC PASSWORD
pass here
6
If no errors uploading On Time Agenda:
xcrun stapler staple OnTimeAgenda.dmg
Now, i changed step 4, because altool failed to this:
xcrun notarytool submit --keychain-profile PROFILE OnTimeAgenda.dmg
Note:
The profile PROFILE was created using this:
xcrun notary tool store-credentials PROFILE --apple-id my@mail --team-id my_team_id
After running step 4, the upload is a success, but when i run:

xcrun notarytool history --keychain-profile PROFILE, my submission status is: "Invalid"
I did a xcrun notarytool log ID_OF_SUBMISSION_HERE
and i got:
statusSummary: "Archive contains critical validation errors"
@ajwfrost or anyone who has been through this process do you have any clue what i can try next? (i've been at this for 5 hours now :) )
Beta Was this translation helpful? Give feedback.
All reactions