mirror of
https://github.com/yuzono/anime-extensions.git
synced 2026-06-13 13:39:44 +00:00
* kts * UNext: graphql util * Ganma: graphql util * ComicEarthStar: graphql util * VoyceMe: graphql util * graphql util * KDoc documentation... *sigh* * util * cleanup * json (cherry picked from commit 3142aa48c633cfb9b0faa02ddd57b662cb8a2a26) (cherry picked from commit 953e3ae90af8d7ad8ca2897a24f61d4a9d69c193)
27 lines
472 B
Kotlin
27 lines
472 B
Kotlin
plugins {
|
|
alias(libs.plugins.android.library)
|
|
alias(libs.plugins.kotlin.serialization)
|
|
|
|
alias(kei.plugins.android.base)
|
|
alias(kei.plugins.spotless)
|
|
}
|
|
|
|
android {
|
|
namespace = "keiyoushi.core"
|
|
|
|
buildFeatures {
|
|
resValues = false
|
|
}
|
|
|
|
testOptions {
|
|
unitTests.isReturnDefaultValues = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(libs.bundles.common)
|
|
|
|
testImplementation(libs.bundles.common)
|
|
testImplementation(libs.junit)
|
|
}
|