mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 10:25:09 +01:00
41 lines
783 B
Plaintext
41 lines
783 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
kotlin("plugin.serialization")
|
|
}
|
|
|
|
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)
|
|
}
|