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