Use xcrun notarytool --wait
as described in Apple's docs: Customizing the notarization workflow
With a concise example given here: #22 (comment)
Notarizing a macOS app involves a series of manual steps, including zipping a bundle, uploading it to to Apple, and polling the notarization service.
xcnotary
automates these steps for you. It:
- Attempts to fail fast if necessary, performing several checks on your target before uploading it to Apple.
- Zips the input if it is an .app bundle.
- Submits the input to the notarization service, and polls until completion. This step typically takes a few minutes.
- In case of success, attaches the notarization ticket to the target, enabling the app to pass Gatekeeper on first run even without an Internet connection.
- In case of failure, fetches the error log from Apple and outputs it to
stderr
. - Return a zero/non-zero code for easy CI integration.
# Install
brew install akeru-inc/tap/xcnotary
# Upgrade
brew update
brew upgrade akeru-inc/tap/xcnotary
To perform various code signing checks on the input without submitting:
xcnotary precheck <input path>
To perform code signing checks, submit to the notarization service, and block waiting for response:
xcnotary notarize <input path> \
--developer-account <Apple Developer account> \
--developer-password-keychain-item <name of keychain item, see below> \
[--provider <provider short name>]
[--no-precheck]
Supported inputs:
- ✅ .app bundles
- ✅ .dmg disk images
- ✅ .pkg installer packages
This tool does not handle your Apple Developer password. Instead, Xcode's helper altool
reads an app-specific Apple Developer ID password directly from the keychain. See the documentation for xcrun altool --store-password-in-keychain-item
to set up a suitable keychain item.
The optional --provider
argument should be specified if the developer account is associated with more than one team. This value can be obtained by running the following command and noting the "ProviderShortname" displayed.
xcrun altool --list-providers -u "$DEVELOPER_ACCOUNT_USERNAME" -p "@keychain:$PASSWORD_KEYCHAIN_ITEM"
-
Xcode's
altool
will connect to several Apple hosts as outlined in the documentation. -
When notarization fails,
xcnotary
will connect tohttps://osxapps-ssl.itunes.apple.com/
on port 443 to retrieve the failure log.
Apple documentation advises: "Always check the log file, even if notarization succeeds, because it might contain warnings that you can fix prior to your next submission."
xcnotary
will fetch and display the notarization service response upon completion.
xcnotary
attempts to check the input for some common notarization issues before uploading it to Apple. While not foolproof, these checks may potentially save you minutes waiting for a response only to fail due to an incorrect code signing flag.
When the input is an app bundle, the following checks will be performed:
- ✅ Bundle being signed with a Developer ID certificate and not containing unsigned items.
- ✅ Bundle being signed with a secure timestamp.
- ✅ Bundle not having the get-task-allow entitlement.
- ✅ Bundle having hardened runtime enabled.
When the input is a .dmg or a .pkg, only the Developer ID signing check is performed, i.e. the only check that can be performed at the moment without extracting the contents. In your workflow, you may want to run xcnotary precheck
on your bundle target before packaging it.
In rare cases, it may be helpful to troubleshoot code signing issues directly using the notarization service response. To do so, specify --no-precheck
when invoking xcnotary notarize
.
The following examples set various necessary build flags, such as code signing with a "secure timestamp."
xcodebuild \
-target <target> \
-scheme <scheme> \
-configuration Release \
-derivedDataPath .xcodebuild \
"CODE_SIGN_IDENTITY=Developer ID Application: <team name>" \
"OTHER_CODE_SIGN_FLAGS=--timestamp --options=runtime" \
CODE_SIGN_INJECT_BASE_ENTITLEMENTS=NO \
CODE_SIGN_STYLE=Manual
CODE_SIGN_IDENTITY
should match the corresponding Keychain certificate.
Note that --options=runtime
will have the effect of opting in your binary to the hardened runtime environment. You most likely want to first manually enable the "Hardened Runtime" capability in Xcode's target settings > "Signing and Capabilities" and make sure your application functions as expected. There, you may also add any entitlements to relax the runtime restrictions.
pkgbuild \
--component <path to bundle built according to above specs>
--sign "Developer ID Installer: <team name>" \
--timestamp \
<output_pkg_name.pkg>
Codesign after creating the DMG:
codesign -s "Developer ID Application: <team>" <dmg>
-
Feature requests/comments/questions? Write: david@akeru.com