mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-04 15:33:48 +00:00
23 lines
521 B
Groovy
23 lines
521 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
id "com.android.library"
|
|
}
|
|
|
|
apply from: "$mppProjectWithSerializationPresetPath"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api internalProject("micro_utils.ktor.common")
|
|
api internalProject("micro_utils.coroutines")
|
|
api libs.ktor.client
|
|
}
|
|
}
|
|
androidMain {
|
|
dependsOn jvmMain
|
|
}
|
|
}
|
|
}
|