From bbf7d4c157648bd792c1832097b69e7602843764 Mon Sep 17 00:00:00 2001 From: Igor Demin Date: Mon, 21 Sep 2020 14:51:11 +0300 Subject: [PATCH] App templates: README.md, .gitignore --- .gitignore | 2 +- templates/desktop-template/README.md | 2 +- templates/multiplatform-template/README.md | 11 +++++++---- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 30380256b8..06e8847b4d 100644 --- a/.gitignore +++ b/.gitignore @@ -21,5 +21,5 @@ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* -templates/mpp-template/.idea/** +templates/multiplatform-template/.idea/** templates/desktop-template/.idea/** \ No newline at end of file diff --git a/templates/desktop-template/README.md b/templates/desktop-template/README.md index fb9ca43241..d47d754f20 100644 --- a/templates/desktop-template/README.md +++ b/templates/desktop-template/README.md @@ -2,4 +2,4 @@ Compose Desktop Application - `./gradlew run` - run application - `./gradlew install` - build application into `build/install` -- `./gradlew build` - build and create dist ready for distribution in `build/distributions/xxx.zip` \ No newline at end of file +- `./gradlew distZip` - build and create archive ready for distribution in `build/distributions/desktop.zip` \ No newline at end of file diff --git a/templates/multiplatform-template/README.md b/templates/multiplatform-template/README.md index 988ed80ad2..33d19a940e 100644 --- a/templates/multiplatform-template/README.md +++ b/templates/multiplatform-template/README.md @@ -1,6 +1,9 @@ -Compose MPP Application +Compose Multiplatform Application +**Desktop** - `./gradlew run` - run application -- `./gradlew install` - build application into `build/install` -- `./gradlew build` - build and create dist ready for distribution in `build/distributions/xxx.zip` -- `./gradlew installDebug` - install android application \ No newline at end of file +- `./gradlew install` - build application into `desktop/build/install` +- `./gradlew distZip` - build and create archive ready for distribution in `desktop/build/distributions/desktop.zip` + +**Android** +- `./gradlew installDebug` - install Android application on an Android device (on a real device or on an emulator) \ No newline at end of file