Skip to content

Commit a200218

Browse files
authored
Change dependency on the foundation to the ui and update coroutines version to avoid resolve issues. (JetBrains#4660)
More info: https://jakewharton.com/nonsensical-maven-is-still-a-gradle-problem/
1 parent c25262d commit a200218

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

components/gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android.useAndroidX=true
88

99
#Versions
1010
kotlin.version=1.9.23
11-
compose.version=1.6.10-dev1575
12-
agp.version=8.1.2
11+
compose.version=1.6.10-beta01
12+
agp.version=8.2.2
1313

1414
#Compose
1515
org.jetbrains.compose.experimental.jscanvas.enabled=true

components/gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
kotlinx-coroutines = "1.7.3"
2+
kotlinx-coroutines = "1.8.0"
33
androidx-appcompat = "1.6.1"
44
androidx-activity-compose = "1.8.2"
55
androidx-test = "1.5.0"

components/resources/library/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ kotlin {
6868
val commonMain by getting {
6969
dependencies {
7070
implementation(compose.runtime)
71-
implementation(compose.foundation)
71+
implementation(compose.ui)
7272
implementation(libs.kotlinx.coroutines.core)
7373
}
7474
}

0 commit comments

Comments
 (0)