project.version = "$version" project.group = "$group" apply from: "$publishGradlePath" kotlin { jvm { compilations.main { kotlinOptions { jvmTarget = "1.8" } } } js (IR) { browser() nodejs() } android { publishAllLibraryVariants() } sourceSets { commonMain { dependencies { implementation kotlin('stdlib') api "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlin_serialisation_core_version" } } commonTest { dependencies { implementation kotlin('test-common') implementation kotlin('test-annotations-common') } } jvmTest { dependencies { implementation kotlin('test-junit') } } jsTest { dependencies { implementation kotlin('test-js') implementation kotlin('test-junit') } } androidTest { dependencies { implementation kotlin('test-junit') implementation "androidx.test.ext:junit:$test_ext_junit_version" implementation "androidx.test.espresso:espresso-core:$espresso_core" } } } } java { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } apply from: "$defaultAndroidSettingsPresetPath"