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 {
77
77
78
78
buildFeatures {
79
79
compose = true
80
+ buildConfig = true
80
81
}
81
82
82
83
compileOptions {
83
- sourceCompatibility = JavaVersion .VERSION_1_8
84
- targetCompatibility = JavaVersion .VERSION_1_8
84
+ sourceCompatibility = JavaVersion .VERSION_17
85
+ targetCompatibility = JavaVersion .VERSION_17
85
86
}
86
87
87
88
kotlinOptions {
88
- jvmTarget = " 1.8 "
89
+ jvmTarget = " 17 "
89
90
}
90
91
91
92
packagingOptions {
Original file line number Diff line number Diff line change @@ -21,6 +21,5 @@ android.useAndroidX=true
21
21
kapt.incremental.apt =true
22
22
ksp.incremental.apt =true
23
23
org.gradle.unsafe.configuration-cache =true
24
- android.defaults.buildfeatures.buildconfig =true
25
24
android.nonTransitiveRClass =false
26
25
android.nonFinalResIds =false
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ kotlin = "1.9.23"
42
42
kotlinxCoroutines = " 1.8.0"
43
43
kotlinxDatetime = " 0.5.0"
44
44
kotlinxSerializationJson = " 1.6.3"
45
- ksp = " 1.9.22 -1.0.18 "
45
+ ksp = " 1.9.23 -1.0.20 "
46
46
lint = " 31.3.1"
47
47
# @keep
48
48
minSdk = " 21"
@@ -55,7 +55,7 @@ room = "2.6.1"
55
55
spotless = " 5.12.5"
56
56
timber = " 5.0.1"
57
57
# @keep
58
- targetSdk = " 33 "
58
+ targetSdk = " 34 "
59
59
truth = " 1.4.2"
60
60
turbine = " 0.12.1"
61
61
Original file line number Diff line number Diff line change @@ -26,6 +26,11 @@ android {
26
26
defaultConfig {
27
27
minSdk = libs.versions.minSdk.get().toInt()
28
28
}
29
+
30
+ compileOptions {
31
+ sourceCompatibility = JavaVersion .VERSION_17
32
+ targetCompatibility = JavaVersion .VERSION_17
33
+ }
29
34
}
30
35
31
36
dependencies {
You can’t perform that action at this time.
0 commit comments