I have code signed a screen saver (legacy screen saver)
I have verified it is code signed using: codesign -vvv --deep --strict pathtofile
(valid on disk, satisfies its Designated Requirement)
I have tried putting the file into a folder and then using:
/usr/bin/ditto -c -k --keepParent APP_PATH ZIPPATH
and I have tried just zipping the .saver file using the same ditto command.
Then I try to notarize by using:
xcrun altool \
--file screensaver.zip
It says No errors uploading and gives me a RequestUUID back.
However at the end of all this, it tells me it was not notified, that status = invalid, status code = 2, Package invalid
How can I find out what the problem is? Where did I go wrong?
Thanks!
I have verified it is code signed using: codesign -vvv --deep --strict pathtofile
(valid on disk, satisfies its Designated Requirement)
I have tried putting the file into a folder and then using:
/usr/bin/ditto -c -k --keepParent APP_PATH ZIPPATH
and I have tried just zipping the .saver file using the same ditto command.
Then I try to notarize by using:
xcrun altool \
-notarize-app \
-username appleID \
-password appSpecificPassword \
--file screensaver.zip
It says No errors uploading and gives me a RequestUUID back.
However at the end of all this, it tells me it was not notified, that status = invalid, status code = 2, Package invalid
How can I find out what the problem is? Where did I go wrong?
Thanks!