mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-01 05:53:50 +00:00
19 lines
422 B
Groovy
19 lines
422 B
Groovy
plugins {
|
|
id "org.jetbrains.kotlin.multiplatform"
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
id "com.android.library"
|
|
}
|
|
|
|
apply from: "$mppAndroidProject"
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api internalProject("micro_utils.android.alerts.common")
|
|
api internalProject("micro_utils.android.recyclerview")
|
|
}
|
|
}
|
|
}
|
|
}
|