0

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 ,

  1. "The binary is not signed."
  2. "The signature does not include a secure time stamp.", for the libraries i have added.

I am using third party library "ivona" for text to speech, for which, these libraries are used. Now my question is

  1. Is it safe to distribute these app, with such warning?
  2. How can i add timeStamp for these library, to remove these warnings?

    enter image description here enter image description here

Krishna Maru
  • 164
  • 13

2 Answers2

0

The error says the binary isn't signed. Did you sign it? Signing is a separate step from notarization.

Apple has some pretty reasonable documentation at https://developer.apple.com/documentation/xcode/notarizing_macos_software_before_distribution/resolving_common_notarization_issues

That has example codesign commands. Specifically it's worth noting that you need the --timestamp option

seph
  • 813
  • 6
  • 16
0

Adding those .dylib files to frameworks in my code directly helped me to solve the issue.

Tomerikoo
  • 18,379
  • 16
  • 47
  • 61
Krishna Maru
  • 164
  • 13