<lambda>null1plugins { 2 kotlin("multiplatform") 3 id("com.google.devtools.ksp") 4 } 5 6 version = "1.0-SNAPSHOT" 7 <lambda>null8kotlin { 9 jvm { 10 } 11 js(BOTH) { 12 browser() 13 nodejs() 14 } 15 linuxX64() { 16 } 17 androidNativeX64() { 18 } 19 androidNativeArm64() { 20 } 21 // TODO: Enable after CI's Xcode version catches up. 22 // iosArm64() 23 // macosX64() 24 mingwX64() 25 sourceSets { 26 val commonMain by getting 27 } 28 } 29 <lambda>null30tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> { 31 kotlinOptions.freeCompilerArgs += "-Xuse-deprecated-legacy-compiler" 32 } 33