31 lines
786 B
Kotlin
31 lines
786 B
Kotlin
plugins {
|
|
kotlin("multiplatform")
|
|
id("com.android.library")
|
|
kotlin("plugin.compose")
|
|
id("org.jetbrains.compose")
|
|
|
|
`ani-mpp-lib-targets`
|
|
kotlin("plugin.serialization")
|
|
id("org.jetbrains.kotlinx.atomicfu")
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets.commonMain.dependencies {
|
|
api(projects.app.shared.appPlatform)
|
|
api(projects.app.shared.uiFoundation)
|
|
api(projects.app.shared)
|
|
api(libs.kotlinx.coroutines.core)
|
|
}
|
|
sourceSets.commonTest.dependencies {
|
|
implementation(projects.utils.uiTesting)
|
|
}
|
|
sourceSets.androidMain.dependencies {
|
|
implementation(libs.androidx.compose.ui.tooling.preview)
|
|
implementation(libs.androidx.compose.ui.tooling)
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "me.him188.ani.app.application"
|
|
}
|