mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-15 04:43:49 +00:00
25 lines
595 B
Groovy
25 lines
595 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
id "com.android.library"
|
|
id "kotlin-android-extensions"
|
|
}
|
|
|
|
apply from: "$mppAndroidProjectPresetPath"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api internalProject("micro_utils.repos.common")
|
|
api internalProject("micro_utils.coroutines")
|
|
}
|
|
}
|
|
androidMain {
|
|
dependencies {
|
|
implementation "androidx.core:core-ktx:$core_ktx_version"
|
|
}
|
|
}
|
|
}
|
|
}
|