Browse Source

Update README.md

pull/350/head
Nikolay Igotti 4 years ago committed by GitHub
parent
commit
4198060a46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      tutorials/Signing_and_notarization_on_macOS/README.md

6
tutorials/Signing_and_notarization_on_macOS/README.md

@ -187,6 +187,8 @@ The following Gradle properties can be used instead of DSL properties:
* `compose.desktop.mac.signing.identity` overrides the `identity` DSL property. * `compose.desktop.mac.signing.identity` overrides the `identity` DSL property.
* `compose.desktop.mac.signing.keychain` overrides the `keychain` DSL property. * `compose.desktop.mac.signing.keychain` overrides the `keychain` DSL property.
Those properties could be stored in `$HOME/.gradle/gradle.properties` to use across multiple applications.
### Configuring notarization settings ### Configuring notarization settings
``` kotlin ``` kotlin
@ -211,9 +213,9 @@ macOS {
## Using Gradle ## Using Gradle
The following tasks are available: The following tasks are available:
* Use `createDistributable` or `package<PACKAGING_FORMAT>` to get a signed application * Use `createDistributable` or `packageDmg` to get a signed application
(no separate step is required). (no separate step is required).
* Use `notarize<PACKAGING_FORMAT>` to upload an application for notarization. * Use `notarizeDmg` to upload an application for notarization.
Once the upload finishes, a `RequestUUID` will be printed. Once the upload finishes, a `RequestUUID` will be printed.
The notarization process takes some time. The notarization process takes some time.
Once the notarization process finishes, an email will be sent to you. Once the notarization process finishes, an email will be sent to you.

Loading…
Cancel
Save