Posts

Post not yet marked as solved
6 Replies
Sorry, this is a different issue.In my other issue (https://forums.developer.apple.com/thread/124378) the dialog was worse. It only had "Show in Finder" button, and "Ok" button, no "Open" button, and said something like "Apple couldn't check this for malicious software. This software needs to be updated"
Post marked as solved
1 Replies
I was able to resolve my issue. I changed how I package the files for the notarization service.I was usingzip -r program.zip program.app. Some testing suggested that zipping like that altered the codesign stuff.The notarization service did warn that my app had invalid signature.I switch to using:ditto -c -k --keepParent program.app program.zipas described here:https://developer.apple.com/documentation/xcode/notarizing_your_app_before_distribution/customizing_the_notarization_workflow?language=objc