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