mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 02:34:39 +00:00
24 lines
430 B
Kotlin
24 lines
430 B
Kotlin
plugins {
|
|
kotlin("multiplatform")
|
|
kotlin("plugin.serialization")
|
|
id("com.android.library")
|
|
}
|
|
|
|
kotlin {
|
|
androidTarget()
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(projects.sourceApi)
|
|
}
|
|
}
|
|
val androidMain by getting {
|
|
dependencies {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "yokai.domain"
|
|
}
|