39 lines
900 B
Kotlin
39 lines
900 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(libs.bundles.kotlinx.coroutines)
|
|
implementation(libs.bundles.serialization)
|
|
|
|
implementation(libs.unifile)
|
|
|
|
api(libs.sqldelight.androidxPaging)
|
|
|
|
compileOnly(libs.androidx.compose.runtimeAnnotation)
|
|
|
|
testImplementation(libs.bundles.test)
|
|
testImplementation(libs.kotlinx.coroutines.test)
|
|
testRuntimeOnly(libs.junit.platform.launcher)
|
|
}
|