This question seems like it may have been asked before but I can't find the right answer.
I've bundled my app into a package which is signed and notarized, but when I trying to install it a see the error :
The package has been signed:
sudo pkgutil --check-signature [PKG_PATH]
yields
After forcing it to install I see that the installed app is also signed:
sudo codesign -d --verbose=4 [APP_PATH]
yields
The bundle is also notarized:
sudo spctl -a -vv [APP_PATH]
yields
What else could I have possibly missed ? How do I remove this error so I can install the product ?
I've bundled my app into a package which is signed and notarized, but when I trying to install it a see the error :
can’t be opened because Apple cannot check it for malicious software.
The package has been signed:
sudo pkgutil --check-signature [PKG_PATH]
yields
Code Block Status: signed by a developer certificate issued by Apple for distribution ...
After forcing it to install I see that the installed app is also signed:
sudo codesign -d --verbose=4 [APP_PATH]
yields
Code Block ... CDHash=4ab0ad946f99b5bc54fe5203e91be9cb596e5b82 Signature size=8970 Authority=Developer ID Application: ______ (XXXXXX) Authority=Developer ID Certification Authority Authority=Apple Root CA Timestamp=Jun 22, 2020 at 5:50:07 PM ...
The bundle is also notarized:
sudo spctl -a -vv [APP_PATH]
yields
Code Block source=Notarized Developer ID origin=Developer ID Application: ___ (XXXXX)
What else could I have possibly missed ? How do I remove this error so I can install the product ?