Initial commit
This commit is contained in:
commit
98ed7e8839
2263 changed files with 108711 additions and 0 deletions
24
buildSrc/src/main/kotlin/lib-android.gradle.kts
Normal file
24
buildSrc/src/main/kotlin/lib-android.gradle.kts
Normal file
|
@ -0,0 +1,24 @@
|
|||
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)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue