2024-02-19 14:00:22 +00:00
|
|
|
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 {
|
2024-02-21 16:56:32 +00:00
|
|
|
androidResources = false
|
2024-02-19 14:00:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-03-02 22:17:33 +00:00
|
|
|
compileOnly(versionCatalogs.named("libs").findBundle("common").get())
|
2024-02-19 14:00:22 +00:00
|
|
|
}
|