mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 08:35:08 +01:00
23 lines
467 B
Plaintext
23 lines
467 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(platform(kotlinx.coroutines.bom))
|
|
implementation(kotlinx.bundles.coroutines)
|
|
|
|
implementation(project(":source-api"))
|
|
|
|
testImplementation(libs.junit)
|
|
}
|