Update mppProjectWithSerialization.gradle

This commit is contained in:
2022-06-29 13:36:42 +06:00
committed by GitHub
parent b575a2ca2f
commit 8339c290b9

View File

@@ -4,7 +4,13 @@ project.group = "$group"
// apply from: "$publishGradlePath"
kotlin {
jvm()
jvm {
compilations.main {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
js (IR) {
browser()
nodejs()
@@ -48,9 +54,8 @@ kotlin {
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
apply from: "$defaultAndroidSettingsPresetPath"