forked from AlmightyHak/extensions-source
25 lines
444 B
Text
25 lines
444 B
Text
|
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)
|
||
|
}
|
||
|
}
|