Skip to content

Commit cbcd1db

Browse files
committed
Library upgrades
1 parent ded5ebc commit cbcd1db

File tree

2 files changed

+24
-19
lines changed

2 files changed

+24
-19
lines changed

app/build.gradle.kts

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2+
13
plugins {
24
alias(libs.plugins.android.application)
35
alias(libs.plugins.kotlin.android)
@@ -62,10 +64,6 @@ android {
6264
sourceCompatibility = JavaVersion.toVersion(libs.versions.javaVersion.get())
6365
targetCompatibility = JavaVersion.toVersion(libs.versions.javaVersion.get())
6466
}
65-
kotlinOptions {
66-
jvmTarget = libs.versions.javaVersion.get()
67-
freeCompilerArgs = freeCompilerArgs + "-opt-in=kotlin.time.ExperimentalTime"
68-
}
6967
buildFeatures {
7068
compose = true
7169
buildConfig = true
@@ -76,6 +74,13 @@ android {
7674
}
7775
}
7876

77+
kotlin {
78+
compilerOptions {
79+
jvmTarget.set(JvmTarget.fromTarget(libs.versions.javaVersion.get()))
80+
freeCompilerArgs.add("-opt-in=kotlin.time.ExperimentalTime")
81+
}
82+
}
83+
7984
dependencies {
8085

8186
implementation(libs.androidx.core.ktx)

gradle/libs.versions.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,38 +7,38 @@ compileSdk = "36"
77
minSdk = "29"
88

99
javaVersion = "17"
10-
agp = "8.11.2"
10+
agp = "8.12.3"
1111
workManager = "2.11.0"
1212
argon2kt = "1.6.0"
1313
bcrypt = "0.10.2"
1414
faceDetection = "16.1.7"
1515
kotlinxCoroutinesTest = "1.10.2"
1616
rules = "1.7.0"
1717
accompanistPermissions = "0.37.3"
18-
coreSplashscreen = "1.0.1"
19-
lifecycleViewModel = "2.9.4"
18+
coreSplashscreen = "1.2.0"
19+
lifecycleViewModel = "2.10.0"
2020
materialIconsExtended = "1.7.8"
21-
mockk = "1.14.6"
21+
mockk = "1.14.7"
2222
kim = "0.26.2"
23-
kotlin = "2.2.21"
23+
kotlin = "2.3.0"
2424
kotlinx-serialization = "1.9.0"
25-
runtimeLivedata = "1.9.4"
25+
runtimeLivedata = "1.10.1"
2626
coreKtx = "1.17.0"
2727
junit = "4.13.2"
2828
junitVersion = "1.3.0"
29-
activityCompose = "1.11.0"
30-
composeBom = "2025.10.01"
31-
navigation3 = "1.0.0-beta01"
29+
activityCompose = "1.12.2"
30+
composeBom = "2026.01.00"
31+
navigation3 = "1.0.0"
3232
nav3Material = "1.0.0-SNAPSHOT"
33-
lifecycleViewmodelNav3 = "1.0.0-alpha04"
33+
lifecycleViewmodelNav3 = "2.10.0"
3434
koin-bom = "4.1.1"
3535
cryptographyBom = "0.5.0"
36-
datastorePreferences = "1.1.7"
36+
datastorePreferences = "1.2.0"
3737
timber = "5.0.1"
38-
zoomable = "2.8.2"
39-
cameraCamera2 = "1.5.1"
40-
cameraView = "1.5.1"
41-
foundation = "1.9.4"
38+
zoomable = "2.9.0"
39+
cameraCamera2 = "1.5.2"
40+
cameraView = "1.5.2"
41+
foundation = "1.10.1"
4242

4343
[libraries]
4444
accompanist-permissions = { module = "com.google.accompanist:accompanist-permissions", version.ref = "accompanistPermissions" }

0 commit comments

Comments
 (0)