
(cherry picked from commit 8ab7e632936a008d31a87acd335fbd5fb21d818b) # Conflicts: # domain/build.gradle.kts
30 lines
618 B
Plaintext
30 lines
618 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
namespace = "tachiyomi.domain"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":source-api"))
|
|
implementation(project(":core"))
|
|
|
|
implementation(platform(kotlinx.coroutines.bom))
|
|
implementation(kotlinx.bundles.coroutines)
|
|
|
|
api(libs.sqldelight.android.paging)
|
|
|
|
// SY -->
|
|
implementation(libs.injekt.core)
|
|
// SY <--
|
|
|
|
testImplementation(libs.bundles.test)
|
|
}
|