MicroUtils/selector/common/build.gradle

18 lines
351 B
Groovy
Raw Normal View History

2020-12-14 19:17:16 +06:00
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
id "com.android.library"
}
2023-10-20 21:53:27 +06:00
apply from: "$mppJvmJsAndroidLinuxMingwLinuxArm64ProjectPresetPath"
2020-12-14 19:17:16 +06:00
kotlin {
sourceSets {
commonMain {
dependencies {
2022-03-10 17:04:05 +06:00
api libs.kt.coroutines
2020-12-14 19:17:16 +06:00
}
}
}
2022-03-10 17:04:05 +06:00
}