mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-15 12:53:51 +00:00
21 lines
538 B
Groovy
21 lines
538 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
id "com.android.library"
|
|
id "kotlin-android-extensions"
|
|
}
|
|
|
|
apply from: "$mppProjectWithSerializationPresetPath"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api internalProject("micro_utils.repos.ktor.common")
|
|
api internalProject("micro_utils.pagination.ktor.common")
|
|
api internalProject("micro_utils.ktor.client")
|
|
}
|
|
}
|
|
}
|
|
}
|