* add clipstudioreader and drecomics * add firecross * webtoon DreComics and try find key in url * fixes * drecomics search and filters * firecross search/filters, csr epub viewer support * migrate to lib and xml parser * api * cleanup and dependency
29 lines
551 B
Plaintext
29 lines
551 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
id("kotlinx-serialization")
|
|
}
|
|
|
|
android {
|
|
compileSdk = AndroidConfig.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk = AndroidConfig.minSdk
|
|
}
|
|
|
|
namespace = "eu.kanade.tachiyomi.lib.${project.name}"
|
|
|
|
androidResources.enable = false
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(versionCatalogs.named("libs").findBundle("common").get())
|
|
implementation(project(":core"))
|
|
}
|
|
|
|
tasks.register("printDependentExtensions") {
|
|
doLast {
|
|
project.printDependentExtensions()
|
|
}
|
|
}
|