diff --git a/experimental/examples/chat-mpp/build.gradle.kts b/experimental/examples/chat-mpp/build.gradle.kts index 04d04a3f1c..e8e2e4ce02 100644 --- a/experimental/examples/chat-mpp/build.gradle.kts +++ b/experimental/examples/chat-mpp/build.gradle.kts @@ -193,11 +193,11 @@ project.tasks.withType(org.jetbrains.kotlin.gradle.dsl.KotlinJsCompile::class.ja } android { - compileSdk = 31 + compileSdk = 32 defaultConfig { - minSdk = 21 - targetSdk = 31 + minSdk = 26 + targetSdk = 32 } compileOptions { diff --git a/experimental/examples/chat-mpp/gradle.properties b/experimental/examples/chat-mpp/gradle.properties index ac08e49268..88a8835e45 100644 --- a/experimental/examples/chat-mpp/gradle.properties +++ b/experimental/examples/chat-mpp/gradle.properties @@ -7,8 +7,8 @@ kotlin.mpp.enableGranularSourceSetsMetadata=true kotlin.native.binary.memoryModel=experimental compose.desktop.verbose=true android.useAndroidX=true -compose.version=1.2.0-alpha01-dev725 -kotlin.version=1.6.21 +compose.version=1.2.0-rc01 +kotlin.version=1.7.10 agp.version=7.0.4 kotlin.js.webpack.major.version=4 org.jetbrains.compose.experimental.jscanvas.enabled=true diff --git a/experimental/examples/falling-balls-mpp/build.gradle.kts b/experimental/examples/falling-balls-mpp/build.gradle.kts index 01b05ff5e4..dde5bb35e1 100644 --- a/experimental/examples/falling-balls-mpp/build.gradle.kts +++ b/experimental/examples/falling-balls-mpp/build.gradle.kts @@ -104,8 +104,8 @@ kotlin { dependsOn(commonMain) kotlin.srcDirs("src/jvmMain/kotlin") dependencies { - api("androidx.appcompat:appcompat:1.4.1") - implementation("androidx.activity:activity-compose:1.4.0") + implementation("androidx.appcompat:appcompat:1.5.1") + implementation("androidx.activity:activity-compose:1.5.0") } } @@ -223,11 +223,11 @@ project.tasks.withType(org.jetbrains.kotlin.gradle.dsl.KotlinJsCompile::class.ja } android { - compileSdk = 31 + compileSdk = 32 defaultConfig { - minSdk = 21 - targetSdk = 31 + minSdk = 26 + targetSdk = 32 } compileOptions { diff --git a/experimental/examples/falling-balls-mpp/gradle.properties b/experimental/examples/falling-balls-mpp/gradle.properties index db26638086..30d9b6db3a 100644 --- a/experimental/examples/falling-balls-mpp/gradle.properties +++ b/experimental/examples/falling-balls-mpp/gradle.properties @@ -1,6 +1,6 @@ org.gradle.jvmargs=-Xmx3g -compose.version=1.2.0-alpha01-dev725 -kotlin.version=1.6.21 +compose.version=1.2.0-rc01 +kotlin.version=1.7.10 kotlin.code.style=official kotlin.native.cacheKind=none kotlin.native.useEmbeddableCompilerJar=true diff --git a/experimental/examples/falling-balls-mpp/src/commonMain/kotlin/bouncingBalls/BouncingBalls.kt b/experimental/examples/falling-balls-mpp/src/commonMain/kotlin/bouncingBalls/BouncingBalls.kt index 9ca392be3b..58f5b65adb 100644 --- a/experimental/examples/falling-balls-mpp/src/commonMain/kotlin/bouncingBalls/BouncingBalls.kt +++ b/experimental/examples/falling-balls-mpp/src/commonMain/kotlin/bouncingBalls/BouncingBalls.kt @@ -26,7 +26,7 @@ import kotlin.math.max import kotlin.math.sin import kotlin.random.Random -private inline fun Modifier.noRippleClickable(crossinline onClick: (Offset) -> Unit): Modifier = +private fun Modifier.noRippleClickable(onClick: (Offset) -> Unit): Modifier = composed { clickable( indication = null, 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 68c9c73f4e..4eac158e21 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-beta02 +compose.version=1.2.0-rc01 diff --git a/experimental/examples/minesweeper/build.gradle.kts b/experimental/examples/minesweeper/build.gradle.kts index 2c216cb93b..3226e24669 100644 --- a/experimental/examples/minesweeper/build.gradle.kts +++ b/experimental/examples/minesweeper/build.gradle.kts @@ -15,8 +15,8 @@ buildscript { } plugins { - kotlin("multiplatform") version "1.6.21" - id("org.jetbrains.compose") version "1.2.0-alpha01-dev725" + kotlin("multiplatform") version "1.7.10" + id("org.jetbrains.compose") version "1.2.0-rc01" } version = "1.0-SNAPSHOT"