2020-09-20 02:17:11 +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"
|
|
|
|
id "kotlin-android-extensions"
|
2020-09-20 02:17:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
apply from: "$mppProjectWithSerializationPresetPath"
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2020-09-21 00:23:13 +00:00
|
|
|
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_coroutines_version"
|
2020-09-20 02:17:11 +00:00
|
|
|
api internalProject("micro_utils.pagination.common")
|
2020-09-21 00:23:13 +00:00
|
|
|
|
|
|
|
api "com.benasher44:uuid:$uuidVersion"
|
2020-09-20 02:17:11 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-10 09:43:15 +00:00
|
|
|
|
|
|
|
androidMain {
|
|
|
|
dependencies {
|
|
|
|
api "androidx.core:core-ktx:$core_ktx_version"
|
|
|
|
api internalProject("micro_utils.common")
|
|
|
|
api internalProject("micro_utils.coroutines")
|
|
|
|
}
|
|
|
|
}
|
2020-09-20 02:17:11 +00:00
|
|
|
}
|
|
|
|
}
|