Skip to content

Commit 0d4ee4c

Browse files
authored
Merge pull request #44 from Kotlin/version-updates
Update dependencies
2 parents 4d0a6a3 + d5d3894 commit 0d4ee4c

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

composeApp/build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ kotlin {
4545
implementation(compose.components.resources)
4646
implementation(compose.components.uiToolingPreview)
4747

48+
implementation(libs.navigation.compose)
49+
implementation(libs.lifecycle.runtime.compose)
50+
implementation(libs.material.icons.core)
51+
4852
implementation(libs.ktor.client.core)
4953
implementation(libs.ktor.client.content.negotiation)
5054
implementation(libs.ktor.serialization.kotlinx.json)
@@ -53,7 +57,6 @@ kotlin {
5357
implementation(libs.coil.network.ktor)
5458
implementation(libs.koin.core)
5559
implementation(libs.koin.compose.viewmodel)
56-
implementation(libs.navigation.compose)
5760
}
5861
}
5962
}

gradle/libs.versions.toml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,31 @@
11
[versions]
2-
agp = "8.6.1"
2+
agp = "8.9.2"
33
androidx-activityCompose = "1.10.1"
44
androidx-ui-tooling = "1.7.8"
5-
coil = "3.1.0"
6-
compose-multiplatform = "1.7.3"
7-
koin = "4.0.3"
8-
kotlin = "2.1.20"
9-
ktor = "3.1.1"
10-
navigationCompose = "2.8.0-alpha11"
5+
coil = "3.2.0"
6+
compose-multiplatform = "1.8.0"
7+
koin = "4.1.0-Beta11"
8+
kotlin = "2.1.21"
9+
ktor = "3.1.3"
10+
materialIconsCore = "1.7.3"
11+
navigationCompose = "2.9.0-beta01"
12+
lifecycleCompose = "2.9.0-beta01"
1113

1214
[libraries]
1315
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activityCompose" }
1416
androidx-compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "androidx-ui-tooling" }
1517
androidx-compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "androidx-ui-tooling" }
1618
coil-compose = { group = "io.coil-kt.coil3", name = "coil-compose", version.ref = "coil" }
1719
coil-network-ktor = { group = "io.coil-kt.coil3", name = "coil-network-ktor3", version.ref = "coil" }
18-
koin-core = { module = "io.insert-koin:koin-core", version.ref = "koin" }
1920
koin-compose-viewmodel = { module = "io.insert-koin:koin-compose-viewmodel", version.ref = "koin" }
21+
koin-core = { module = "io.insert-koin:koin-core", version.ref = "koin" }
2022
ktor-client-content-negotiation = { module = "io.ktor:ktor-client-content-negotiation", version.ref = "ktor" }
2123
ktor-client-core = { module = "io.ktor:ktor-client-core", version.ref = "ktor" }
2224
ktor-client-darwin = { module = "io.ktor:ktor-client-darwin", version.ref = "ktor" }
2325
ktor-client-okhttp = { module = "io.ktor:ktor-client-okhttp", version.ref = "ktor" }
2426
ktor-serialization-kotlinx-json = { module = "io.ktor:ktor-serialization-kotlinx-json", version.ref = "ktor" }
27+
lifecycle-runtime-compose = { group = "org.jetbrains.androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lifecycleCompose" }
28+
material-icons-core = { module = "org.jetbrains.compose.material:material-icons-core", version.ref = "materialIconsCore" }
2529
navigation-compose = { module = "org.jetbrains.androidx.navigation:navigation-compose", version.ref = "navigationCompose" }
2630

2731
[plugins]

0 commit comments

Comments
 (0)