File tree Expand file tree Collapse file tree 2 files changed +24
-19
lines changed
Expand file tree Collapse file tree 2 files changed +24
-19
lines changed Original file line number Diff line number Diff line change 1+ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2+
13plugins {
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+
7984dependencies {
8085
8186 implementation(libs.androidx.core.ktx)
Original file line number Diff line number Diff line change @@ -7,38 +7,38 @@ compileSdk = "36"
77minSdk = " 29"
88
99javaVersion = " 17"
10- agp = " 8.11.2 "
10+ agp = " 8.12.3 "
1111workManager = " 2.11.0"
1212argon2kt = " 1.6.0"
1313bcrypt = " 0.10.2"
1414faceDetection = " 16.1.7"
1515kotlinxCoroutinesTest = " 1.10.2"
1616rules = " 1.7.0"
1717accompanistPermissions = " 0.37.3"
18- coreSplashscreen = " 1.0.1 "
19- lifecycleViewModel = " 2.9.4 "
18+ coreSplashscreen = " 1.2.0 "
19+ lifecycleViewModel = " 2.10.0 "
2020materialIconsExtended = " 1.7.8"
21- mockk = " 1.14.6 "
21+ mockk = " 1.14.7 "
2222kim = " 0.26.2"
23- kotlin = " 2.2.21 "
23+ kotlin = " 2.3.0 "
2424kotlinx-serialization = " 1.9.0"
25- runtimeLivedata = " 1.9.4 "
25+ runtimeLivedata = " 1.10.1 "
2626coreKtx = " 1.17.0"
2727junit = " 4.13.2"
2828junitVersion = " 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"
3232nav3Material = " 1.0.0-SNAPSHOT"
33- lifecycleViewmodelNav3 = " 1.0.0-alpha04 "
33+ lifecycleViewmodelNav3 = " 2.10.0 "
3434koin-bom = " 4.1.1"
3535cryptographyBom = " 0.5.0"
36- datastorePreferences = " 1.1.7 "
36+ datastorePreferences = " 1.2.0 "
3737timber = " 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 ]
4444accompanist-permissions = { module = " com.google.accompanist:accompanist-permissions" , version.ref = " accompanistPermissions" }
You can’t perform that action at this time.
0 commit comments