forked from AlmightyHak/extensions-source
24 lines
444 B
Kotlin
24 lines
444 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
id("kotlinx-serialization")
|
|
}
|
|
|
|
android {
|
|
compileSdk = AndroidConfig.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdk = AndroidConfig.minSdk
|
|
}
|
|
|
|
namespace = "eu.kanade.tachiyomi.lib.${name.replace("-", "")}"
|
|
}
|
|
|
|
versionCatalogs
|
|
.named("libs")
|
|
.findBundle("common")
|
|
.ifPresent { common ->
|
|
dependencies {
|
|
compileOnly(common)
|
|
}
|
|
}
|