From 20cd216276a64154b06b26e486fe5e96f35dcc67 Mon Sep 17 00:00:00 2001 From: akurasov <86794754+akurasov@users.noreply.github.com> Date: Thu, 2 Dec 2021 14:39:54 +0300 Subject: [PATCH] Update README.md --- tutorials/Development_for_Android/README.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/tutorials/Development_for_Android/README.md b/tutorials/Development_for_Android/README.md index 8ec1d23ee2..57ef277bed 100644 --- a/tutorials/Development_for_Android/README.md +++ b/tutorials/Development_for_Android/README.md @@ -11,15 +11,9 @@ Compose Multiplatform doesn't contain any Android artifacts. Instead it referenc ## Usage Jetpack Compose interoperability is enabled on publication level - nothing needs to be explicitly enabled. -The easiest way to start is to use Kotlin Project Wizard with Compose Multiplatform template - one of the target platform is Android. +The easiest way to start is to use Kotlin Project Wizard with Compose Multiplatform template - one of the target platform is Android. +Another option is to take [multiplatform template](https://github.com/JetBrains/compose-jb/tree/master/templates/multiplatform-template) -If you want to create it manually, the following needs to be done: -- Create a Kotlin multiplatform project -- Enable Kotlin Gradle plugin (`kotlin("multiplatform")`) -- Enable Compose Multiplatform Gradle plugin (`id("org.jetbrains.compose")`) -- Add common Compose dependency to the Common module (e.g. `api(compose.runtime)`) - -This is it. During compilation for Android platform, Jetpack Compose artifacts will be picked automatically. ## Versioning