diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index e621a0fd..ad6ded27 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,7 +3,7 @@ agp = "8.3.0" # 7.4.1 is the maximum version supported by IDEA 2023.1 android-compile = "34" android-min = "21" android-target = "32" -compose = "1.5.12" +compose = "1.6.0" coroutines = "1.8.0" jacoco = "0.8.7" jvm-toolchain = "11" diff --git a/sample/build.gradle.kts b/sample/build.gradle.kts index b5ff2cbd..23333d49 100644 --- a/sample/build.gradle.kts +++ b/sample/build.gradle.kts @@ -19,9 +19,10 @@ kotlin { sourceSets { commonMain.dependencies { - implementation(projects.box) + implementation(compose.runtime) implementation(libs.coroutines.core) implementation(libs.datetime) + implementation(projects.box) } commonTest.dependencies { @@ -49,7 +50,7 @@ kotlin { jsMain.dependencies { implementation(libs.coroutines.js) - implementation(compose.web.core) // required because of the compose plugin, but unused. + implementation(compose.html.core) // required because of the compose plugin, but unused. } } }