mirror of
https://github.com/null2264/yokai.git
synced 2025-06-20 10:14:50 +00:00
Co-authored-by: AntsyLich <59261191+antsylich@users.noreply.github.com>
34 lines
692 B
Kotlin
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"
|
|
}
|
|
}
|