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