diff --git a/examples/codeviewer/build.gradle.kts b/examples/codeviewer/build.gradle.kts index f9cc465b9c..26e6a3133d 100644 --- a/examples/codeviewer/build.gradle.kts +++ b/examples/codeviewer/build.gradle.kts @@ -8,7 +8,8 @@ buildscript { } dependencies { - classpath("org.jetbrains.compose:compose-gradle-plugin:0.1.0-m1-build62") + // __UPDATE_COMPOSE_VERSION_MARKER__ + classpath("org.jetbrains.compose:compose-gradle-plugin:0.1.0-build113") classpath("com.android.tools.build:gradle:4.0.1") classpath(kotlin("gradle-plugin", version = "1.4.0")) } @@ -20,4 +21,4 @@ allprojects { jcenter() maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") } -} \ No newline at end of file +} diff --git a/examples/imageviewer/build.gradle.kts b/examples/imageviewer/build.gradle.kts index 53c40ef8f4..f2aa2d33b1 100755 --- a/examples/imageviewer/build.gradle.kts +++ b/examples/imageviewer/build.gradle.kts @@ -10,7 +10,8 @@ buildscript { } dependencies { - classpath("org.jetbrains.compose:compose-gradle-plugin:0.1.0-m1-build62") + // __UPDATE_COMPOSE_VERSION_MARKER__ + classpath("org.jetbrains.compose:compose-gradle-plugin:0.1.0-build113") classpath("com.android.tools.build:gradle:4.0.1") classpath(kotlin("gradle-plugin", version = "1.4.0")) } diff --git a/examples/imageviewer/common/src/desktopMain/kotlin/example/imageviewer/view/MainScreen.kt b/examples/imageviewer/common/src/desktopMain/kotlin/example/imageviewer/view/MainScreen.kt index b45cab0565..b101b9da4b 100755 --- a/examples/imageviewer/common/src/desktopMain/kotlin/example/imageviewer/view/MainScreen.kt +++ b/examples/imageviewer/common/src/desktopMain/kotlin/example/imageviewer/view/MainScreen.kt @@ -11,7 +11,6 @@ import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.Stack import androidx.compose.foundation.layout.preferredHeight import androidx.compose.foundation.layout.preferredWidth import androidx.compose.foundation.layout.preferredSize diff --git a/examples/todoapp/buildSrc/buildSrc/src/main/kotlin/Deps.kt b/examples/todoapp/buildSrc/buildSrc/src/main/kotlin/Deps.kt index fe227c8042..e5dbb9af2e 100644 --- a/examples/todoapp/buildSrc/buildSrc/src/main/kotlin/Deps.kt +++ b/examples/todoapp/buildSrc/buildSrc/src/main/kotlin/Deps.kt @@ -10,7 +10,8 @@ object Deps { } object Compose { - private const val VERSION = "0.1.0-m1-build62" + // __UPDATE_COMPOSE_VERSION_MARKER__ + private const val VERSION = "0.1.0-build113" const val gradlePlugin = "org.jetbrains.compose:compose-gradle-plugin:$VERSION" } } diff --git a/templates/desktop-template/build.gradle.kts b/templates/desktop-template/build.gradle.kts index 99ea7f7923..b4d597e3e7 100644 --- a/templates/desktop-template/build.gradle.kts +++ b/templates/desktop-template/build.gradle.kts @@ -3,7 +3,8 @@ import org.jetbrains.compose.desktop.application.dsl.TargetFormat plugins { kotlin("jvm") version "1.4.0" - id("org.jetbrains.compose") version (System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.1.0-m1-build62") + // __UPDATE_COMPOSE_VERSION_MARKER__ + id("org.jetbrains.compose") version (System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.1.0-build113") } repositories { @@ -24,4 +25,4 @@ compose.desktop { packageName = "KotlinJvmComposeDesktopApplication" } } -} \ No newline at end of file +} diff --git a/templates/multiplatform-template/build.gradle.kts b/templates/multiplatform-template/build.gradle.kts index f3b6f34779..4685c47c6d 100644 --- a/templates/multiplatform-template/build.gradle.kts +++ b/templates/multiplatform-template/build.gradle.kts @@ -1,5 +1,6 @@ buildscript { - val composeVersion = System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.1.0-m1-build62" + // __UPDATE_COMPOSE_VERSION_MARKER__ + val composeVersion = System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.1.0-build113" repositories { // TODO: remove after new build is published @@ -22,4 +23,4 @@ allprojects { jcenter() maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") } -} \ No newline at end of file +}