Posts

Post not yet marked as solved
11 Replies
8.7k Views
I've created an application using electron.js in Visual Studio Code to be published outside MAC App Store (MAS).Before the macOS 10.14.4 release, my application was build and signed successfully using " electron-osx-sign " module which uses " electron-forge " internally. Now after macOS update I'm getting error message while building the application as - "rejected source = Unnotarized Developer ID".Earlier, I followed the below mentioned steps to sign my application:1. Download Developer ID Application and Developer Id Installer certificates from my apple developer account.2. Install the certificates in KeyChain access of my mac system.3. Run the below mentioned command:"electron-packager . myAppName --overwrite --platform=darwin --arch=x64 --electron-verison=5.0.1 -icon=icon.icns --osx-sign" 4. A new application from identified developer was created in the mac system location.I followed the same procedure to create a new build for my application post the macOS update and getting the below mentioned error message:" WARNING: Code sign failed; please retry manually. Error: Command failed: spctl --assess --type execute --verbose --ignore-cache --no-cache /var/folders/n6/vn0gnf6j5mg0my_k9pplw4n80000gq/T/electron-packager/darwin-x64/ApplicationFolderName/MyAppName.app/var/folders/n6/vn0gnf6j5mg0my_k9pplw4n80000gq/T/electron-packager/darwin-x64/ApplicationFolderName/MyAppName.app: rejectedsource=Unnotarized Developer ID "Kindly provide me with a possible solution to code sign and notarize my electron application.Thanks in advance.
Posted Last updated
.