mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 08:55:07 +01:00
2b5d9fd76b
* Move shared configuration to subprojects in root Gradle file * Missed but not forgotten * Review changes
30 lines
442 B
Plaintext
30 lines
442 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
kotlin("plugin.serialization")
|
|
}
|
|
|
|
android {
|
|
namespace = "eu.kanade.tachiyomi.source"
|
|
|
|
defaultConfig {
|
|
consumerProguardFile("consumer-proguard.pro")
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":core"))
|
|
|
|
api(kotlinx.serialization.json)
|
|
|
|
api(libs.rxjava)
|
|
|
|
api(libs.preferencektx)
|
|
|
|
api(libs.jsoup)
|
|
|
|
implementation(androidx.corektx)
|
|
}
|