Merge pull request #3349 from frebib/fix/warnings
Fix a couple of build-time warnings in Gradle output
This commit is contained in:
commit
a9b45a2f57
2 changed files with 1 additions and 4 deletions
|
|
@ -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)
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue