chore: Prepare domain module

This commit is contained in:
Ahmad Ansori Palembani 2024-06-17 09:41:12 +07:00
parent 9e99a86739
commit 1ddc488b17
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6

View file

@ -1,11 +1,23 @@
plugins {
kotlin("multiplatform")
kotlin("plugin.serialization")
id("com.android.library")
id("org.jetbrains.kotlin.android")
}
kotlin {
androidTarget()
sourceSets {
val commonMain by getting {
dependencies {
}
}
val androidMain by getting {
dependencies {
}
}
}
}
android {
namespace = "yokai.domain"
}
dependencies {
}