30 lines
537 B
Plaintext
30 lines
537 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}"
|
|
|
|
buildFeatures {
|
|
androidResources = false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(versionCatalogs.named("libs").findBundle("common").get())
|
|
}
|
|
|
|
tasks.register("printDependentExtensions") {
|
|
doLast {
|
|
project.printDependentExtensions()
|
|
}
|
|
}
|