Merge pull request #3349 from frebib/fix/warnings

Fix a couple of build-time warnings in Gradle output
This commit is contained in:
Benoit Marty
2024-09-30 11:47:21 +02:00
committed by GitHub
2 changed files with 1 additions and 4 deletions

View File

@@ -46,6 +46,3 @@ android.experimental.enableTestFixtures=true
# Create BuildConfig files as bytecode to avoid Java compilation phase
android.enableBuildConfigAsBytecode=true
# By default, the plugin applies itself to all subprojects, but we don't want that as it would cause issues with builds using local AARs
dependency.analysis.autoapply=false

View File

@@ -58,7 +58,7 @@ fun Project.setupKover() {
task("koverVerifyAll") {
group = "verification"
description = "Verifies the code coverage of all subprojects."
val dependencies = listOf(":app:koverVerifyGplayDebug") + koverVariants.map { ":app:koverVerify${it.capitalized()}" }
val dependencies = listOf(":app:koverVerifyGplayDebug") + koverVariants.map { ":app:koverVerify${it.replaceFirstChar(Char::titlecase)}" }
dependsOn(dependencies)
}