mirror of
https://github.com/null2264/yokai.git
synced 2025-06-20 18:24:42 +00:00
24 lines
449 B
Kotlin
24 lines
449 B
Kotlin
plugins {
|
|
alias(kotlinx.plugins.multiplatform)
|
|
alias(androidx.plugins.library)
|
|
kotlin("plugin.serialization")
|
|
}
|
|
|
|
kotlin {
|
|
androidTarget()
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(projects.sourceApi)
|
|
}
|
|
}
|
|
val androidMain by getting {
|
|
dependencies {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "yokai.domain"
|
|
}
|