File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -77,15 +77,16 @@ android {
7777
7878 buildFeatures {
7979 compose = true
80+ buildConfig = true
8081 }
8182
8283 compileOptions {
83- sourceCompatibility = JavaVersion .VERSION_1_8
84- targetCompatibility = JavaVersion .VERSION_1_8
84+ sourceCompatibility = JavaVersion .VERSION_17
85+ targetCompatibility = JavaVersion .VERSION_17
8586 }
8687
8788 kotlinOptions {
88- jvmTarget = " 1.8 "
89+ jvmTarget = " 17 "
8990 }
9091
9192 packagingOptions {
Original file line number Diff line number Diff line change @@ -21,6 +21,5 @@ android.useAndroidX=true
2121kapt.incremental.apt =true
2222ksp.incremental.apt =true
2323org.gradle.unsafe.configuration-cache =true
24- android.defaults.buildfeatures.buildconfig =true
2524android.nonTransitiveRClass =false
2625android.nonFinalResIds =false
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ kotlin = "1.9.23"
4242kotlinxCoroutines = " 1.8.0"
4343kotlinxDatetime = " 0.5.0"
4444kotlinxSerializationJson = " 1.6.3"
45- ksp = " 1.9.22 -1.0.18 "
45+ ksp = " 1.9.23 -1.0.20 "
4646lint = " 31.3.1"
4747# @keep
4848minSdk = " 21"
@@ -55,7 +55,7 @@ room = "2.6.1"
5555spotless = " 5.12.5"
5656timber = " 5.0.1"
5757# @keep
58- targetSdk = " 33 "
58+ targetSdk = " 34 "
5959truth = " 1.4.2"
6060turbine = " 0.12.1"
6161
Original file line number Diff line number Diff line change @@ -26,6 +26,11 @@ android {
2626 defaultConfig {
2727 minSdk = libs.versions.minSdk.get().toInt()
2828 }
29+
30+ compileOptions {
31+ sourceCompatibility = JavaVersion .VERSION_17
32+ targetCompatibility = JavaVersion .VERSION_17
33+ }
2934}
3035
3136dependencies {
You can’t perform that action at this time.
0 commit comments