Browse Source

Native Distribution tutorial corrections (#72)

pull/88/head
Malachi de AElfweald 4 years ago committed by GitHub
parent
commit
362f6ec8b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      tutorials/Native_distributions_and_local_execution/README.md

4
tutorials/Native_distributions_and_local_execution/README.md

@ -122,7 +122,7 @@ compose.desktop {
packageName = "ExampleApp" packageName = "ExampleApp"
version = "0.1-SNAPSHOT" version = "0.1-SNAPSHOT"
description = "Compose Example App" description = "Compose Example App"
copyright = project.file("LICENSE.txt").readText() copyright = "© 2020 My Name. All rights reserved."
vendor = "Example vendor" vendor = "Example vendor"
} }
} }
@ -197,6 +197,7 @@ The app icon needs to be provided in OS-specific formats:
```kotlin ```kotlin
compose.desktop { compose.desktop {
application { application {
nativeDistributions {
macOS { macOS {
iconFile.set(project.file("icon.icns")) iconFile.set(project.file("icon.icns"))
} }
@ -207,5 +208,6 @@ compose.desktop {
iconFile.set(project.file("icon.png")) iconFile.set(project.file("icon.png"))
} }
} }
}
} }
``` ```
Loading…
Cancel
Save