Hello,
I sign my application with electron builder and notorized my app with this command line :
xcrun altool --notarize-app --primary-bundle-id "" --username "" --password "" --asc-provider "" --file AppZipPath
It seems that i'm well signing my app :
pkgutil --check-signature myAppPath
Status: signed by a certificate trusted by macOS Certificate Chain:
1. Developer ID Application: ** (**)
Expires: 2027-10-06 16:03:02 +0000
SHA256 Fingerprint:
BE **
------------------------------------------------------------------------
2. Developer ID Certification Authority
Expires: 2031-09-17 00:00:00 +0000
SHA256 Fingerprint:
F1 **
------------------------------------------------------------------------
3. Apple Root CA
Expires: 2035-02-09 21:40:36 +0000
SHA256 Fingerprint:
B0 **
But when i'm trying my notorization :
spctl -a -t exec -vvv AppPath
I've got this : rejected source=Unnotarized Developer ID origin=Developer ID Application: ** (**) (with the good info)
Do you know what i'm doing wrong ?
Thank you