Skip to content

Commit 39ae3e2

Browse files
committed
chore: update dependencies and toolchains
- Gradle 8.11.1 - AGP 8.8.0 - Kotlin 2.1.0 - KSP 2.1.0 - AndroidX Core 1.15.0 ... and more
1 parent b07d99c commit 39ae3e2

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

app/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ plugins {
1717

1818
android {
1919
namespace = "com.osfans.trime"
20-
compileSdk = 34
21-
buildToolsVersion = "34.0.0"
20+
compileSdk = 35
21+
buildToolsVersion = "35.0.0"
2222

2323
defaultConfig {
2424
applicationId = "com.osfans.trime"

gradle/libs.versions.toml

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
[versions]
2-
androidGradlePlugin = "8.3.2"
3-
kotlin = "2.0.0"
4-
ksp = "2.0.0-1.0.21"
5-
navigation = "2.7.7"
2+
androidGradlePlugin = "8.8.0"
3+
kotlin = "2.1.0"
4+
ksp = "2.1.0-1.0.29"
5+
navigation = "2.8.5"
66
room = "2.6.1"
77
splitties = "3.0.0"
8-
aboutlibraries = "11.1.3"
8+
aboutlibraries = "11.2.3"
99
kotest = "5.8.0"
10-
kotlin-inject = "0.6.3"
10+
kotlin-inject = "0.7.2"
1111

1212
[libraries]
1313
android-gradlePlugin = { group = "com.android.tools.build", name = "gradle", version.ref = "androidGradlePlugin" }
1414
kotlin-gradlePlugin = { group = "org.jetbrains.kotlin", name = "kotlin-gradle-plugin", version.ref = "kotlin" }
15-
kotlinx-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version = "1.8.0" }
16-
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version = "1.6.3" }
17-
androidx-activity = { module = "androidx.activity:activity-ktx", version = "1.9.0" }
18-
androidx-appcompat = { module = "androidx.appcompat:appcompat", version = "1.6.1" }
15+
kotlinx-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version = "1.10.1" }
16+
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version = "1.7.3" }
17+
androidx-activity = { module = "androidx.activity:activity-ktx", version = "1.10.0" }
18+
androidx-appcompat = { module = "androidx.appcompat:appcompat", version = "1.7.0" }
1919
androidx-autofill = { module = "androidx.autofill:autofill", version ="1.1.0"}
20-
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version = "2.1.4" }
21-
androidx-core-ktx = { module = "androidx.core:core-ktx", version = "1.13.1" }
20+
androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version = "2.2.0" }
21+
androidx-core-ktx = { module = "androidx.core:core-ktx", version = "1.15.0" }
2222
androidx-navigation-fragment = { module = "androidx.navigation:navigation-fragment-ktx", version.ref = "navigation" }
2323
androidx-navigation-ui = { module = "androidx.navigation:navigation-ui-ktx", version.ref = "navigation" }
24-
androidx-paging-runtime-ktx = { group = "androidx.paging", name = "paging-runtime-ktx", version = "3.3.2" }
24+
androidx-paging-runtime-ktx = { group = "androidx.paging", name = "paging-runtime-ktx", version = "3.3.5" }
2525
androidx-preference = { module = "androidx.preference:preference-ktx", version = "1.2.1" }
26-
androidx-recyclerview = { module = "androidx.recyclerview:recyclerview", version = "1.3.2" }
26+
androidx-recyclerview = { module = "androidx.recyclerview:recyclerview", version = "1.4.0" }
2727
androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "room" }
2828
androidx-room-runtime = { module = "androidx.room:room-runtime", version.ref = "room" }
2929
androidx-room-ktx = { module = "androidx.room:room-ktx", version.ref = "room" }
3030
androidx-viewpager2 = { module = "androidx.viewpager2:viewpager2", version = "1.1.0" }
3131
androidx-work-runtime-ktx = { group = "androidx.work", name = "work-runtime-ktx", version = "2.9.1" }
3232
flexbox = { module = "com.google.android.flexbox:flexbox", version = "3.0.0" }
3333
bravh = { module = "io.github.cymchad:BaseRecyclerViewAdapterHelper4", version = "4.1.4" }
34-
kaml = { module = "com.charleskorn.kaml:kaml", version = "0.56.0" }
34+
kaml = { module = "com.charleskorn.kaml:kaml", version = "0.70.0" }
3535
timber = { module = "com.jakewharton.timber:timber", version = "5.0.1" }
3636
xxpermissions = { module = "com.github.getActivity:XXPermissions", version = "18.5" }
3737
kotlin-inject-compiler = { module = "me.tatarka.inject:kotlin-inject-compiler-ksp", version.ref = "kotlin-inject" }
@@ -45,7 +45,7 @@ splitties-views-dsl-recyclerview = { module = "com.louiscad.splitties:splitties-
4545
splitties-views-recyclerview = { module = "com.louiscad.splitties:splitties-views-recyclerview", version.ref = "splitties" }
4646
aboutlibraries-core = { module = "com.mikepenz:aboutlibraries-core", version.ref = "aboutlibraries" }
4747
junit = { module = "junit:junit", version = "4.13.2" }
48-
kotlinpoet-ksp = { module = "com.squareup:kotlinpoet-ksp", version = "1.16.0" }
48+
kotlinpoet-ksp = { module = "com.squareup:kotlinpoet-ksp", version = "2.0.0" }
4949
ksp = { module = "com.google.devtools.ksp:symbol-processing-api", version.ref = "ksp" }
5050
kotest-runner-junit5 = { module = "io.kotest:kotest-runner-junit5", version.ref = "kotest" }
5151
kotest-assertions-core = { module = "io.kotest:kotest-assertions-core", version.ref = "kotest" }

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)