yokai/domain/build.gradle.kts
Ahmad Ansori Palembani c09c4045e2
refactor: Rework buildSrc
Co-authored-by: AntsyLich <59261191+antsylich@users.noreply.github.com>
2024-12-25 10:37:47 +07:00

34 lines
692 B
Kotlin

plugins {
id("yokai.android.library")
kotlin("multiplatform")
alias(kotlinx.plugins.serialization)
}
kotlin {
androidTarget()
sourceSets {
commonMain {
dependencies {
implementation(projects.source.api)
}
}
commonTest {
dependencies {
implementation(libs.bundles.test)
implementation(kotlinx.coroutines.test)
}
}
androidMain {
dependencies {
}
}
}
}
android {
namespace = "yokai.domain"
defaultConfig {
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
}