You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tooling/plugins/src/main/kotlin/org/mobilenativefoundation/store/tooling/plugins/AndroidConventionPlugin.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -39,8 +39,8 @@ class AndroidConventionPlugin : Plugin<Project> {
Copy file name to clipboardExpand all lines: tooling/plugins/src/main/kotlin/org/mobilenativefoundation/store/tooling/plugins/KotlinMultiplatformConventionPlugin.kt
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ class KotlinMultiplatformConventionPlugin : Plugin<Project> {
61
61
nodejs()
62
62
}
63
63
64
-
jvmToolchain(17)
64
+
jvmToolchain(11)
65
65
66
66
targets.all {
67
67
compilations.all {
@@ -135,7 +135,7 @@ fun Project.configureKotlin() {
135
135
fun Project.configureJava() {
136
136
java {
137
137
toolchain {
138
-
languageVersion.set(JavaLanguageVersion.of(17))
138
+
languageVersion.set(JavaLanguageVersion.of(11))
139
139
}
140
140
}
141
141
}
@@ -156,8 +156,8 @@ fun Project.configureAndroid() {
156
156
}
157
157
158
158
compileOptions {
159
-
sourceCompatibility =JavaVersion.VERSION_17
160
-
targetCompatibility =JavaVersion.VERSION_17
159
+
sourceCompatibility =JavaVersion.VERSION_11
160
+
targetCompatibility =JavaVersion.VERSION_11
161
161
}
162
162
}
163
163
}
@@ -218,12 +218,12 @@ fun Project.configureDokka() = tasks.withType<DokkaTask>().configureEach {
0 commit comments