2020-09-22 01:47:01 +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 01:47:01 +00:00
|
|
|
}
|
|
|
|
|
2024-08-27 12:57:59 +00:00
|
|
|
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64Project"
|
2020-09-22 01:47:01 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api internalProject("micro_utils.repos.ktor.common")
|
2020-09-22 02:20:22 +00:00
|
|
|
api internalProject("micro_utils.pagination.ktor.common")
|
|
|
|
api internalProject("micro_utils.ktor.client")
|
2020-09-22 01:47:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|