Raccoon/core/architecture/testutils/build.gradle.kts
akesi seli b1c4803935
chore(build): apply convention plugins to :core:persistence (#150)
* chore(build): apply convention plugins to :core:persistence

* refactor AndroidTestPlugin

* chore(build): apply convention plugins to :core:architecture:testutils
2024-12-09 14:27:35 +01:00

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"))
}
}
}
}