mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-08 19:18:47 +01:00
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)
|
|
}
|
|
}
|
|
}
|
|
}
|