Notarization fails on MacOS 10.15.3
See original GitHub issueWe are trying to notarize our electron app, but the notarization is not working . It fails with the following issue :-
"issues": [ { "severity": "error", "code": null, "path": "/Contents/Resources/app/node_modules/fsevents/build/Release/.node", "message": "The binary is not signed.", "docUrl": null, "architecture": "x86_64" }, { "severity": "error", "code": null, "path": "/Contents/Resources/app/node_modules/fsevents/build/Release/.node", "message": "The signature does not include a secure timestamp.", "docUrl": null, "architecture": "x86_64" } ]
How to resolve this error, and also if we have a method for deep code signing in electron-builder?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:8
- Comments:59 (20 by maintainers)
Top Results From Across the Web
Resolving common notarization issues - Apple Developer
Before you can notarize an app, you must first code sign it. If you don't, or if you make a modification to the...
Read more >Working with macOS Catalina Notarization - .NET
Beginning with macOS Catalina (version 10.15), all software built after June 1, 2019, and distributed with Developer ID, must be notarized. This ...
Read more >The Gates to Hell: Apples Notarizing - NeoFinder
[NSBundle load]; silently fails in macOS 10.15 if either the host application or the bundle are not properly notarized and some additional undocumented...
Read more >Notarization for macOS 10.14.5+ - Lazarus wiki
In June, we announced that all Mac software distributed outside the Mac App Store must be notarized by Apple in order to run...
Read more >How can I sign and notarize my compiled application to ...
Apple has announced that, starting with macOS Catalina (10.15), they're going to require notarization for all apps, even on systems set to allow ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Our signing is all on CI and uses
CSC_LINK
andCSC_KEY_PASSWORD
so it’s going to be a pain to get manualcodesign
working with that.I’d rather get this fixed in
electron-builder
so everyone can benefit from it.To add my two cents…
I’m also experiencing similar issues with deep code signing, this time with
@tensorflow/tfjs-node
.I’ve read through this thread a couple times now and can’t quite find “the fix”. Wondering if anyone has any input, or if any help is needed to get this resolved in electron-builder itself.
Thanks!