Skip to content

Commit d970830

Browse files
authored
Update dependencies (#506)
* Update dependencies * Fix jvmToolchain config
1 parent f619834 commit d970830

File tree

5 files changed

+20
-24
lines changed

5 files changed

+20
-24
lines changed

androidApp/build.gradle.kts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ kotlin {
2323
implementation(libs.androidx.espresso.core)
2424
}
2525
}
26+
27+
jvmToolchain(21)
2628
}
2729

2830
android {
@@ -54,9 +56,6 @@ android {
5456
sourceCompatibility = JavaVersion.VERSION_11
5557
targetCompatibility = JavaVersion.VERSION_11
5658
}
57-
kotlin {
58-
jvmToolchain(11)
59-
}
6059
packaging {
6160
resources {
6261
excludes += "/META-INF/{AL2.0,LGPL2.1}"

gradle/libs.versions.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
[versions]
2-
aboutlibraries = "12.0.0-a05"
2+
aboutlibraries = "12.2.3"
33
agp = "8.7.3"
44
android-compileSdk = "35"
55
android-minSdk = "26"
66
android-svg = "1.4"
77
android-targetSdk = "35"
88
androidx-activityCompose = "1.10.1"
9-
androidx-core-ktx = "1.15.0"
9+
androidx-core-ktx = "1.16.0"
1010
androidx-core-splashscreen = "1.0.1"
1111
androidx-espresso-core = "3.6.1"
12-
androidx-navigation = "2.9.0-beta01"
13-
androidx-lifecycle = "2.9.0-beta01"
12+
androidx-navigation = "2.9.0-beta03"
13+
androidx-lifecycle = "2.9.1"
1414
androidx-preference = "1.2.1"
1515
androidx-test-junit = "1.2.1"
1616
androidx-work-runtime = "2.10.0"
17-
coil = "3.2.0-rc02"
18-
compose-android = "1.8.0"
19-
compose-hot-reload = "1.0.0-alpha10"
20-
compose-multiplatform = "1.8.1"
17+
coil = "3.2.0"
18+
compose-android = "1.8.2"
19+
compose-hot-reload = "1.0.0-alpha11"
20+
compose-multiplatform = "1.8.2"
2121
coroutines = "1.10.1"
2222
doistx-normalize = "1.2.0"
2323
exposed = "0.59.0"
@@ -27,12 +27,12 @@ hikaricp = "5.1.0"
2727
jib = "3.4.4"
2828
junit = "4.13.2"
2929
kmpnotifier = "1.5.1"
30-
koin = "4.1.0-Beta11"
30+
koin = "4.1.0"
3131
kotlin = "2.1.21"
3232
kotlinx-datetime = "0.6.2"
33-
ktor = "3.1.1"
34-
logbackClassic = "1.5.16"
35-
markdown = "0.34.0-rc03"
33+
ktor = "3.2.0"
34+
logbackClassic = "1.5.18"
35+
markdown = "0.35.0"
3636
multiplatform-settings = "1.3.0"
3737
postgresql = "42.7.3"
3838

shared/build.gradle.kts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,8 @@ kotlin {
160160
implementation(npm("@js-joda/timezone", "2.3.0"))
161161
}
162162
}
163+
164+
jvmToolchain(21)
163165
}
164166

165167
android {
@@ -173,9 +175,6 @@ android {
173175
sourceCompatibility = JavaVersion.VERSION_11
174176
targetCompatibility = JavaVersion.VERSION_11
175177
}
176-
kotlin {
177-
jvmToolchain(11)
178-
}
179178
}
180179

181180
// Android preview support

ui-components-gallery/build.gradle.kts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ kotlin {
5454
implementation(libs.logback.classic)
5555
}
5656
}
57+
58+
jvmToolchain(21)
5759
}
5860

5961
android {
@@ -72,9 +74,6 @@ android {
7274
sourceCompatibility = JavaVersion.VERSION_11
7375
targetCompatibility = JavaVersion.VERSION_11
7476
}
75-
kotlin {
76-
jvmToolchain(11)
77-
}
7877
}
7978

8079
// Android preview support

ui-components/build.gradle.kts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ kotlin {
7373
implementation(libs.ktor.client.js)
7474
}
7575
}
76+
77+
jvmToolchain(21)
7678
}
7779

7880
android {
@@ -85,9 +87,6 @@ android {
8587
sourceCompatibility = JavaVersion.VERSION_11
8688
targetCompatibility = JavaVersion.VERSION_11
8789
}
88-
kotlin {
89-
jvmToolchain(11)
90-
}
9190
}
9291

9392
// Hot reload support

0 commit comments

Comments
 (0)