MicroUtils/selector/common/build.gradle

18 lines
351 B
Groovy
Raw Permalink Normal View History

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