From c76f639d74fcc7e6a241d817203b195e59eecaac Mon Sep 17 00:00:00 2001 From: "dima.avdeev" <99798741+dima-avdeev-jb@users.noreply.github.com> Date: Tue, 18 Oct 2022 14:17:06 +0300 Subject: [PATCH] update compose version 1.2.0 in experimental samples (#2412) --- experimental/examples/chat-mpp/gradle.properties | 2 +- experimental/examples/falling-balls-mpp/gradle.properties | 2 +- .../gradle.properties | 2 +- experimental/examples/minesweeper/build.gradle.kts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/experimental/examples/chat-mpp/gradle.properties b/experimental/examples/chat-mpp/gradle.properties index 70880bc2ed..40fb0bc6a3 100644 --- a/experimental/examples/chat-mpp/gradle.properties +++ b/experimental/examples/chat-mpp/gradle.properties @@ -7,7 +7,7 @@ kotlin.mpp.enableGranularSourceSetsMetadata=true kotlin.native.binary.memoryModel=experimental compose.desktop.verbose=true android.useAndroidX=true -compose.version=1.2.0-rc02 +compose.version=1.2.0 kotlin.version=1.7.10 agp.version=7.0.4 kotlin.js.webpack.major.version=4 diff --git a/experimental/examples/falling-balls-mpp/gradle.properties b/experimental/examples/falling-balls-mpp/gradle.properties index ea3c3d3b2d..6ffeb324de 100644 --- a/experimental/examples/falling-balls-mpp/gradle.properties +++ b/experimental/examples/falling-balls-mpp/gradle.properties @@ -1,5 +1,5 @@ org.gradle.jvmargs=-Xmx3g -compose.version=1.2.0-rc02 +compose.version=1.2.0 kotlin.version=1.7.10 kotlin.code.style=official kotlin.native.cacheKind=none diff --git a/experimental/examples/intellij-plugin-with-experimental-shared-base/gradle.properties b/experimental/examples/intellij-plugin-with-experimental-shared-base/gradle.properties index 8cf2d8fd5a..0d612daf0a 100644 --- a/experimental/examples/intellij-plugin-with-experimental-shared-base/gradle.properties +++ b/experimental/examples/intellij-plugin-with-experimental-shared-base/gradle.properties @@ -1,5 +1,5 @@ kotlin.stdlib.default.dependency=false kotlin.code.style=official kotlin.version=1.7.10 -compose.version=1.2.0-rc02 +compose.version=1.2.0 diff --git a/experimental/examples/minesweeper/build.gradle.kts b/experimental/examples/minesweeper/build.gradle.kts index 3d7b2e393a..2a8b315b4f 100644 --- a/experimental/examples/minesweeper/build.gradle.kts +++ b/experimental/examples/minesweeper/build.gradle.kts @@ -16,7 +16,7 @@ buildscript { plugins { kotlin("multiplatform") version "1.7.10" - id("org.jetbrains.compose") version "1.2.0-rc02" + id("org.jetbrains.compose") version "1.2.0" } version = "1.0-SNAPSHOT"