2020-10-14 08:22:58 +00:00
|
|
|
plugins {
|
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
2020-11-10 09:43:15 +00:00
|
|
|
id "com.android.library"
|
2020-10-14 08:22:58 +00:00
|
|
|
}
|
|
|
|
|
2024-08-27 12:57:59 +00:00
|
|
|
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64Project"
|
2020-10-14 08:22:58 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api internalProject("micro_utils.repos.common")
|
|
|
|
api internalProject("micro_utils.coroutines")
|
|
|
|
}
|
|
|
|
}
|
2024-08-09 13:22:32 +00:00
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
api project(":micro_utils.repos.common.tests")
|
|
|
|
}
|
|
|
|
}
|
2020-10-14 08:22:58 +00:00
|
|
|
}
|
|
|
|
}
|