0b58a081af
(cherry picked from commit 4ac9fcd4d3ff2eed59d9c8454d7463b7c9e6dda6)
44 lines
994 B
Kotlin
44 lines
994 B
Kotlin
plugins {
|
|
id("mihon.library")
|
|
kotlin("android")
|
|
kotlin("plugin.serialization")
|
|
}
|
|
|
|
android {
|
|
namespace = "tachiyomi.domain"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
freeCompilerArgs.add("-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.sourceApi)
|
|
implementation(projects.core.common)
|
|
|
|
implementation(platform(kotlinx.coroutines.bom))
|
|
implementation(kotlinx.bundles.coroutines)
|
|
implementation(kotlinx.bundles.serialization)
|
|
|
|
implementation(libs.unifile)
|
|
|
|
api(libs.sqldelight.android.paging)
|
|
|
|
compileOnly(compose.runtime.annotation)
|
|
|
|
// SY -->
|
|
implementation(libs.injekt)
|
|
// SY <--
|
|
|
|
testImplementation(libs.bundles.test)
|
|
testImplementation(kotlinx.coroutines.test)
|
|
testRuntimeOnly(libs.junit.platform.launcher)
|
|
}
|