Skip to content

Commit a9b45a2

Browse files
authored
Merge pull request #3349 from frebib/fix/warnings
Fix a couple of build-time warnings in Gradle output
2 parents 96fae1b + bac14dd commit a9b45a2

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

gradle.properties

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,3 @@ android.experimental.enableTestFixtures=true
4646

4747
# Create BuildConfig files as bytecode to avoid Java compilation phase
4848
android.enableBuildConfigAsBytecode=true
49-
50-
# 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
51-
dependency.analysis.autoapply=false

plugins/src/main/kotlin/extension/KoverExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ fun Project.setupKover() {
5858
task("koverVerifyAll") {
5959
group = "verification"
6060
description = "Verifies the code coverage of all subprojects."
61-
val dependencies = listOf(":app:koverVerifyGplayDebug") + koverVariants.map { ":app:koverVerify${it.capitalized()}" }
61+
val dependencies = listOf(":app:koverVerifyGplayDebug") + koverVariants.map { ":app:koverVerify${it.replaceFirstChar(Char::titlecase)}" }
6262
dependsOn(dependencies)
6363

6464
}

0 commit comments

Comments
 (0)