File tree Expand file tree Collapse file tree 3 files changed +21
-9
lines changed Expand file tree Collapse file tree 3 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,15 @@ android {
25
25
}
26
26
}
27
27
compileOptions {
28
- sourceCompatibility JavaVersion . VERSION_11
29
- targetCompatibility JavaVersion . VERSION_11
28
+ sourceCompatibility JavaVersion . VERSION_17
29
+ targetCompatibility JavaVersion . VERSION_17
30
30
}
31
+ kotlinOptions {
32
+ jvmTarget = " 17"
33
+ }
34
+
31
35
kotlin {
32
- jvmToolchain(11 )
36
+ jvmToolchain(17 )
33
37
}
34
38
35
39
lintOptions {
Original file line number Diff line number Diff line change @@ -34,11 +34,15 @@ android {
34
34
}
35
35
36
36
compileOptions {
37
- sourceCompatibility JavaVersion . VERSION_11
38
- targetCompatibility JavaVersion . VERSION_11
37
+ sourceCompatibility JavaVersion . VERSION_17
38
+ targetCompatibility JavaVersion . VERSION_17
39
39
}
40
+ kotlinOptions {
41
+ jvmTarget = " 17"
42
+ }
43
+
40
44
kotlin {
41
- jvmToolchain(11 )
45
+ jvmToolchain(17 )
42
46
}
43
47
44
48
resourcePrefix ' cap_'
Original file line number Diff line number Diff line change @@ -26,12 +26,16 @@ android {
26
26
}
27
27
}
28
28
compileOptions {
29
- sourceCompatibility = JavaVersion .VERSION_11
30
- targetCompatibility = JavaVersion .VERSION_11
29
+ sourceCompatibility = JavaVersion .VERSION_17
30
+ targetCompatibility = JavaVersion .VERSION_17
31
+ }
32
+
33
+ kotlinOptions {
34
+ jvmTarget = " 17"
31
35
}
32
36
33
37
kotlin {
34
- jvmToolchain(11 )
38
+ jvmToolchain(17 )
35
39
}
36
40
37
41
lint {
You can’t perform that action at this time.
0 commit comments