2023-01-22 16:12:29 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
kotlin("android")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "tachiyomi.domain"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-01-22 16:37:13 +01:00
|
|
|
implementation(project(":source-api"))
|
2023-02-18 21:14:04 +01:00
|
|
|
implementation(project(":core"))
|
2023-01-22 16:37:13 +01:00
|
|
|
|
2023-02-21 01:02:38 +01:00
|
|
|
implementation(platform(kotlinx.coroutines.bom))
|
|
|
|
implementation(kotlinx.bundles.coroutines)
|
|
|
|
|
2023-03-08 04:38:02 +01:00
|
|
|
api(libs.sqldelight.android.paging)
|
|
|
|
|
2023-01-22 16:37:13 +01:00
|
|
|
testImplementation(libs.junit)
|
2023-01-22 16:12:29 +01:00
|
|
|
}
|