Questions tagged [notarize]

Notarizing Your App Before Distribution Give users even more confidence in your software by submitting it to Apple for notarization.

Notarization gives users more confidence that the Developer ID-signed software you distribute has been checked by Apple for malicious components. Notarization is not App Review. The Apple notary service is an automated system that scans your software for malicious content, checks for code-signing issues, and returns the results to you quickly. If there are no issues, the notary service generates a ticket for you to staple to your software; the notary service also publishes that ticket online where Gatekeeper can find it.

When the user first installs or runs your software, the presence of a ticket (either online or attached to the executable) tells Gatekeeper that Apple notarized the software. Gatekeeper then places descriptive information in the initial launch dialog to help the user make an informed choice about whether to launch the app.

111 questions
0
votes
1 answer

Third party SDK returns incorrect value after notarizing my App

I'm facing a pretty weird issue. I have a function GetInfoA() which returns the value processed from the SDK API. Everything is normal until the app is notarized from Xcode. The value returned from GetInfoA() will be incorrect. I have NO idea why…
Eric Turner
  • 41
  • 1
  • 5
0
votes
1 answer

Code Signing a GUI python App for notarization on macos

I created a python application using py2app and am able to code sign almost all the binaries using the command find "${NAME}.app" -iname '*.so' -or -iname '*.dylib'| while read libfile; do codesign -s "${IDENTITY}" --timestamp -o runtime…
0
votes
0 answers

Mac OS X Notarizing Application - The signature of the binary is invalid

I have .app for Mac OS X . I have successfully signed it with my sign in my keychain. I try to notarize it in .ZIP file and have only errors: The signature of the binary is invalid This error for every binary file in my archive. I read about…
odd90058
  • 5
  • 4
0
votes
1 answer

Add a checksum file to my macOS notarised app bundle

I would like to detect whether my macOS app executable file has been altered by someone. I wouldn't rely on the Codesign because, as I have seen on the web, many apps have been cracked, even if notarised by Apple. I know this will not guarantee the…
Leonardo
  • 751
  • 8
  • 15
0
votes
0 answers

notarize macOS application on electron fail because- not signed- what should i sign?

i am new in the macOS development its been difficult to me to understand how to notarize my electron js application in apple servers, i successfully made a script that send my build to apple servers but the application cant been notarized, i get…
0
votes
1 answer

Syncfusion Webkit rendering engine binaries notarization on MAC

I am using html to PDF conversion using syncfusion webkit rendering on MAC os. It works fine until I notarize my app. When I tried to notarize my app, I got errors like QtMacBinaries are not signed. I signed all QtMacBinaries using my developer id…
0
votes
0 answers

Delphi 10.3.3 macOS Notarization, error paclient exit code 1

I have seen questions about this error with Android and IOS, but I am getting this error trying to notarize my macOS 64-bit app. I don't see any other details so I don't know where to start. I didn't get this error in 10.3.2. Any suggestions?
0
votes
2 answers

Notarizing .dmg with altool not returning result

I am trying to notarise an existing plugin installer in a dmg container. Apple's advise is to use the altool to notarise via terminal. I am using the following code: xcrun altool --notarize-app \ --primary-bundle-id co.nz.xxx.dmg \ --username…
Vedat
  • 1
  • 1
0
votes
1 answer

Mac app notarization successful but spctl assessment rejects app because of Qt Frameworks

We are currently trying to have our app verified in order to distribute it outside of the app store. We are including OpenSceneGraph libraries as well as Qt frameworks in the app bundle. This is how we did it so far: Signed executable in…
p_Each
  • 11
  • 3
0
votes
1 answer

How to codesign and notarize an Os X app?

How to codesign and notarize an Os X app? I'm using Xojo 2016r2.
user10053673
  • 221
  • 1
  • 13
0
votes
1 answer

How to update a macOS bundle without breaking notarization?

I have an application which can be extended with additional functions through small installer bundles. During the installation additional files are placed within the app bundle. How can I ensure that notarization is still valid afterwards? All…
doom4
  • 633
  • 5
  • 19
0
votes
2 answers

Mac app Notarization gives warning "Signature does not include a secure time stamp"

I am using few .dylib libraries in my mac osx app. While notarizing, i get notarized app (with Ready to distribute status), but its showing 2 warnings , "The binary is not signed." "The signature does not include a secure time stamp.", for the…
Krishna Maru
  • 164
  • 13
0
votes
1 answer

Java Tool Notarize process

we have developed GUI tool using Java SE 11 , packaged using Maven. Recommend user to download and set Java in system path to launch the tool. Batch file for windows and .command file for Mac and Linux. Do we need to get notarize approval from apple…
krishnakumar
  • 173
  • 3
  • 15
0
votes
1 answer

How to Notarize an executable shell script (.command) file for MacOS 10.15 Catalina

This is a DIFFERENT scenario than discussed in other postings: I have a .sh (shell script) which I've changed to a .command (executable shell script). It's signed using code sign, and being distributed on a .dmg that is signed. However, Catalina…
SMGreenfield
  • 1,680
  • 19
  • 35
0
votes
1 answer

Notarized PKG validated but fails when attempting to install

Our MacOS application is Java/jar code packaged with JRE and few Python and Bash scripts. The shipping format is PKG. Starting from Catalina we have issues with the notarization process. The PKG is notarized per Apple documentation and "staple…
OGP
  • 950
  • 2
  • 11
  • 26