2020-10-14 14:22:58 +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-10-14 14:22:58 +06:00
|
|
|
}
|
|
|
|
|
2024-08-27 18:57:59 +06:00
|
|
|
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64Project"
|
2020-10-14 14:22:58 +06:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api internalProject("micro_utils.repos.common")
|
|
|
|
api internalProject("micro_utils.coroutines")
|
|
|
|
}
|
|
|
|
}
|
2024-08-09 19:22:32 +06:00
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
api project(":micro_utils.repos.common.tests")
|
|
|
|
}
|
|
|
|
}
|
2020-10-14 14:22:58 +06:00
|
|
|
}
|
|
|
|
}
|