Merge pull request #3349 from frebib/fix/warnings
Fix a couple of build-time warnings in Gradle output
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user