2020-09-24 02:27:16 +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-09-24 02:27:16 +00:00
|
|
|
}
|
|
|
|
|
2024-08-27 12:57:59 +00:00
|
|
|
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64Project"
|
2020-09-24 02:27:16 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2022-03-10 11:04:05 +00:00
|
|
|
api libs.kt.coroutines
|
2020-09-24 02:27:16 +00:00
|
|
|
}
|
|
|
|
}
|
2022-03-11 18:55:03 +00:00
|
|
|
jsMain {
|
|
|
|
dependencies {
|
|
|
|
api project(":micro_utils.common")
|
|
|
|
}
|
|
|
|
}
|
2020-11-10 11:09:14 +00:00
|
|
|
androidMain {
|
|
|
|
dependencies {
|
2022-03-10 11:04:05 +00:00
|
|
|
api libs.kt.coroutines.android
|
2020-11-10 11:09:14 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-24 02:27:16 +00:00
|
|
|
}
|
2021-05-26 11:59:40 +00:00
|
|
|
}
|