mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-08 21:48:43 +01:00
* chore(build): apply convention plugins to :core:persistence * refactor AndroidTestPlugin * chore(build): apply convention plugins to :core:architecture:testutils
17 lines
389 B
Plaintext
17 lines
389 B
Plaintext
plugins {
|
|
id("com.livefast.eattrash.kotlinMultiplatform")
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
val commonMain by getting
|
|
val androidMain by getting {
|
|
dependencies {
|
|
implementation(libs.kotlinx.coroutines)
|
|
implementation(projects.core.architecture)
|
|
implementation(kotlin("test-junit"))
|
|
}
|
|
}
|
|
}
|
|
}
|