2020-09-22 02:20:22 +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-22 02:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
apply from: "$mppProjectWithSerializationPresetPath"
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api internalProject("micro_utils.ktor.common")
|
2020-09-24 02:27:16 +00:00
|
|
|
api internalProject("micro_utils.coroutines")
|
2022-03-10 11:04:05 +00:00
|
|
|
api libs.ktor.client
|
2020-09-22 02:20:22 +00:00
|
|
|
}
|
|
|
|
}
|
2023-02-27 11:03:09 +00:00
|
|
|
androidMain {
|
|
|
|
dependsOn jvmMain
|
|
|
|
}
|
2020-09-22 02:20:22 +00:00
|
|
|
}
|
|
|
|
}
|