32 lines
815 B
Kotlin
32 lines
815 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.videoPlayer.videoPlayerApi)
|
|
api(projects.torrent.torrentApi)
|
|
}
|
|
sourceSets.commonTest.dependencies {
|
|
implementation(projects.utils.uiTesting)
|
|
}
|
|
sourceSets.androidMain.dependencies {
|
|
implementation(libs.androidx.compose.ui.tooling.preview)
|
|
implementation(libs.androidx.compose.ui.tooling)
|
|
}
|
|
sourceSets.desktopMain.dependencies {
|
|
}
|
|
}
|
|
|
|
android {
|
|
namespace = "me.him188.ani.app.video.player"
|
|
}
|