I am trying to package a Mac Electron app using Electron Forge capabilities. Code signing works fine, but there is a problem with notarising. I get
"Finalizing package Failed to staple your application with code: 65". The notarize component of my forge.config.js is:
"osxNotarize: {
tool: 'notarytool',
appBundleId: 'com.ImmersiveDSP.ImmerGo-StudioLive',
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_PASSWORD,
teamId: process.env.APPLE_TEAM_ID,
}"
I provide my Apple ID and the app password in a terminal message together with npm run make. This worked in May this year, but now not. In a JSON response, I do get " reason = "Record not found". Anyone else had this issue and resolved it?
Is there a way that I can view my notarize requests and see what the issue is?
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I am in Xcode and building a C++ app. Compilation happens fine, but at link time I get the following message:
error build: Command Ld failed with a nonzero exit code
My project was derived from the Juce Projucer, and uses a static library, also derived from Projucer. I have indicated the location of this library in "Build Phases -> Link Binary with Libraries"
I can't find any clue as to why this error is occurring. I have used the same code and a library build in Windows, and it works there.
Would appreciate any help!