
* Move shared configuration to subprojects in root Gradle file * Missed but not forgotten * Review changes (cherry picked from commit 2b5d9fd76b9b7b629921bc793553cd4a571eda00) # Conflicts: # app/build.gradle.kts # i18n/build.gradle.kts
36 lines
584 B
Plaintext
36 lines
584 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
kotlin("plugin.serialization")
|
|
id("com.github.ben-manes.versions")
|
|
}
|
|
|
|
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)
|
|
|
|
// SY -->
|
|
implementation(project(":i18n"))
|
|
implementation(kotlinx.reflect)
|
|
// SY <--
|
|
}
|