yokai/domain/build.gradle.kts
Ahmad Ansori Palembani cbdd16f6d4
chore(deps): Update agp to v8.5.0
Also convert some plugins to use version catalog
2024-06-27 19:08:12 +07:00

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"
}