0

Apple lately postponed the hardened runtime rule. (see https://www.idownloadblog.com/2019/09/03/notarized-rule-ease-macos-catalina/)

For development purposes I want to choose which ruleset is applied (with or without hardened runtime) when uploading my app to notarization service.

How can I do so? Please advice. I have trouble finding info here.

TheNextman
  • 12,428
  • 2
  • 36
  • 75
MoxxiManagarm
  • 8,735
  • 3
  • 14
  • 43

2 Answers2

1

By the time I was now able to answer my own question. Harded runtime notarization issues appear as a warning within the JSON result for the time being.

MoxxiManagarm
  • 8,735
  • 3
  • 14
  • 43
0

You asked how to specify whether you want a hardened runtime? At least one way, is to use the codesign command. Take a look at the --options=runtime flag.

https://developer.apple.com/documentation/security/notarizing_your_app_before_distribution/resolving_common_notarization_issues

seph
  • 813
  • 6
  • 16
  • I do know that. But enabling `--options runtime` impacts some application, including mine, even with entitlements enabled. – MoxxiManagarm Sep 17 '19 at 06:46