2022-09-16 00:12:27 +02:00
|
|
|
plugins {
|
|
|
|
|
id("com.android.library")
|
|
|
|
|
kotlin("android")
|
|
|
|
|
kotlin("plugin.serialization")
|
2023-01-19 04:33:56 +01:00
|
|
|
id("com.github.ben-manes.versions")
|
2022-09-16 00:12:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
namespace = "eu.kanade.tachiyomi.source"
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
2022-09-17 16:26:02 +02:00
|
|
|
consumerProguardFile("consumer-proguard.pro")
|
2022-09-16 00:12:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
|
|
implementation(project(":core"))
|
|
|
|
|
|
|
|
|
|
api(kotlinx.serialization.json)
|
|
|
|
|
|
|
|
|
|
api(libs.rxjava)
|
|
|
|
|
|
|
|
|
|
api(libs.preferencektx)
|
|
|
|
|
|
|
|
|
|
api(libs.jsoup)
|
|
|
|
|
|
|
|
|
|
implementation(androidx.corektx)
|
|
|
|
|
|
|
|
|
|
// SY -->
|
|
|
|
|
implementation(project(":i18n"))
|
|
|
|
|
implementation(kotlinx.reflect)
|
|
|
|
|
// SY <--
|
|
|
|
|
}
|