
(cherry picked from commit c31e75f02f3021c52f6c24f655e2bded0c8b2b33) # Conflicts: # .github/workflows/build_pull_request.yml # .github/workflows/build_push.yml # app/build.gradle.kts # build.gradle.kts
48 lines
950 B
Plaintext
48 lines
950 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
id("tachiyomi.lint")
|
|
kotlin("plugin.serialization")
|
|
id("com.github.ben-manes.versions")
|
|
}
|
|
|
|
android {
|
|
namespace = "eu.kanade.tachiyomi.source"
|
|
compileSdk = AndroidConfig.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk = AndroidConfig.minSdk
|
|
targetSdk = AndroidConfig.targetSdk
|
|
consumerProguardFile("consumer-proguard.pro")
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
}
|
|
}
|
|
|
|
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 <--
|
|
}
|