mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-02 00:36:55 +01:00
e284402253
* define convention plugins * remove duplicate code in build scripts
15 lines
301 B
Plaintext
15 lines
301 B
Plaintext
plugins {
|
|
id("com.livefast.eattrash.kotlinMultiplatform")
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
val androidMain by getting {
|
|
dependencies {
|
|
implementation(kotlin("test-junit"))
|
|
implementation(libs.kotlinx.coroutines.test)
|
|
}
|
|
}
|
|
}
|
|
}
|