18 lines
363 B
Groovy
Raw Permalink Normal View History

2020-09-15 18:57:41 +06:00
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
2020-11-10 15:43:15 +06:00
id "com.android.library"
2020-09-15 18:57:41 +06:00
}
2023-10-20 21:53:27 +06:00
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64ProjectPresetPath"
2021-11-17 14:22:45 +06:00
kotlin {
sourceSets {
commonMain {
dependencies {
api project(":micro_utils.common")
}
}
}
}