File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed
src/main/kotlin/com/fragula2/gradle Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -53,11 +53,11 @@ android {
53
53
}
54
54
}
55
55
compileOptions {
56
- sourceCompatibility = JavaVersion .VERSION_17
57
- targetCompatibility = JavaVersion .VERSION_17
56
+ sourceCompatibility = JavaVersion .VERSION_11
57
+ targetCompatibility = JavaVersion .VERSION_11
58
58
}
59
59
kotlinOptions {
60
- jvmTarget = " 17 "
60
+ jvmTarget = " 11 "
61
61
}
62
62
composeOptions {
63
63
kotlinCompilerExtensionVersion = libs.versions.compose.compiler.get()
Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ android {
43
43
}
44
44
}
45
45
compileOptions {
46
- sourceCompatibility = JavaVersion .VERSION_17
47
- targetCompatibility = JavaVersion .VERSION_17
46
+ sourceCompatibility = JavaVersion .VERSION_11
47
+ targetCompatibility = JavaVersion .VERSION_11
48
48
}
49
49
kotlinOptions {
50
- jvmTarget = " 17 "
50
+ jvmTarget = " 11 "
51
51
}
52
52
sourceSets {
53
53
named(" main" ) {
Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ plugins {
21
21
}
22
22
23
23
java {
24
- sourceCompatibility = JavaVersion .VERSION_17
25
- targetCompatibility = JavaVersion .VERSION_17
24
+ sourceCompatibility = JavaVersion .VERSION_11
25
+ targetCompatibility = JavaVersion .VERSION_11
26
26
}
27
27
tasks.withType<KotlinCompile >().configureEach {
28
28
kotlinOptions {
29
- jvmTarget = " 17 "
29
+ jvmTarget = " 11 "
30
30
}
31
31
}
32
32
Original file line number Diff line number Diff line change @@ -43,12 +43,12 @@ class FragulaModulePlugin : Plugin<Project> {
43
43
consumerProguardFiles(" consumer-rules.pro" )
44
44
}
45
45
compileOptions {
46
- sourceCompatibility = JavaVersion .VERSION_17
47
- targetCompatibility = JavaVersion .VERSION_17
46
+ sourceCompatibility = JavaVersion .VERSION_11
47
+ targetCompatibility = JavaVersion .VERSION_11
48
48
}
49
49
tasks.withType<KotlinCompile >().configureEach {
50
50
kotlinOptions {
51
- jvmTarget = " 17 "
51
+ jvmTarget = " 11 "
52
52
}
53
53
}
54
54
sourceSets {
You can’t perform that action at this time.
0 commit comments