mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 12:25:08 +01:00
40 lines
729 B
Plaintext
40 lines
729 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
|
||
|
}
|
||
|
|
||
|
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)
|
||
|
}
|