Skip to content

Commit

Permalink
Merge pull request #3349 from frebib/fix/warnings
Browse files Browse the repository at this point in the history
Fix a couple of build-time warnings in Gradle output
  • Loading branch information
bmarty authored Sep 30, 2024
2 parents 96fae1b + bac14dd commit a9b45a2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion plugins/src/main/kotlin/extension/KoverExtension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

}
Expand Down

0 comments on commit a9b45a2

Please sign in to comment.