Merge pull request #3349 from frebib/fix/warnings
Fix a couple of build-time warnings in Gradle output
This commit is contained in:
commit
3ee686f250
2 changed files with 1 additions and 4 deletions
|
|
@ -46,6 +46,3 @@ android.experimental.enableTestFixtures=true
|
||||||
|
|
||||||
# Create BuildConfig files as bytecode to avoid Java compilation phase
|
# Create BuildConfig files as bytecode to avoid Java compilation phase
|
||||||
android.enableBuildConfigAsBytecode=true
|
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") {
|
task("koverVerifyAll") {
|
||||||
group = "verification"
|
group = "verification"
|
||||||
description = "Verifies the code coverage of all subprojects."
|
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)
|
dependsOn(dependencies)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue