Notarizing with "xcrun altool" - am I doing it right here ??
I've just signed my app and am now notarizing it.
My app was not made within Xcode, and I don't have Xcode installed, so I am using the command prompt.
This is my line in Terminal:
xcrun altool --store-password-in-keychain-item "AC_PASSWORD" -u "your-username" -p "your-password"
When it says AC_PASSWORD, I assume its my mac password in the login keychain, and the username and other password is my Apple Dev account.
I'm getting zsh: event not found. In fact, I don't know if altool is even present on my Mac, I ran xcrun altool by itself and got an error "unable to find utility altool".
Is altool something I have to install (i.e. do I have to install Xcode for example?)
Afterwards, I intend to perform this:
ditto -c -k --keepParent "dist/My Application.app" dist/MyApplication.zip
xcrun altool --notarize-app -t osx -f dist/MyApplication.zip \
--primary-bundle-id your.bundle.id -u your-username --password "@keychain:AC_PASSWORD"
Ref: