code object is not signed at all In subcomponent
See original GitHub issueHello, When I run code signing process after packaging using electron forge, following issue is thrown. code object is not signed at all In subcomponent: /Users/Chinmoy/Documents/try-it-now/out/Song/Song.app/Contents/Frameworks/libclntsh.dylib.12.1 libclntsh.dylib.12.1: A dylib related to node oracledb. I use following node js script for code signing process. ` var signAsync = require(‘electron-osx-sign’).signAsync
signAsync({ app: ‘Users/Chinmoy/Documents/try-it-now/out/Song/Song.app’, identity:“xxxx” }) .then(function () { // Application signed console.log(arguments) }) .catch(function (err) { // Handle the error console.log(err); })`
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
macos - How do you fix "code object is not signed at all In ...
For me I had to go to the Project build settings and set Other Code Signing Flags to --deep . The problem was...
Read more >Getting "code object is not signed… | Apple Developer Forums
app/Contents/Java/lib/libjcocoa.dylib has following signing error(s): code object is not signed at all In architecture: x86_64 . Refer to the Code Signing and ...
Read more >code object is not signed at all · Issue #5549 - GitHub
framework: code object is not signed at all In subcomponent: /Users/osxserver/builds/3f61e126/1/frontend/vsignpdfui/release/mac/VSignPDF.app/ ...
Read more >Codesign states code object is not signed at all - Ask Different
I have noticed this before too on some executable files. Recently, I downloaded cmake and used codesign to check if it's digitally signed...
Read more >Code object is not signed Subcomponent even though I have ...
com.cyclopsgear.cyclopsdirector.pkg/Payload/XXXX.app/Contents/Plugins/libvlc.bundle: code object is not signed at all In subcomponent: ...
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
@sethlu Issue is fixed if I add following switch case in util.js after line no 230.
case '.1':
Closing issue due to inactivity