Skip to content

Commit

Permalink
update jacoco
Browse files Browse the repository at this point in the history
  • Loading branch information
wuan committed Jul 12, 2024
1 parent bbf9ab7 commit d2730af
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ android {
checkReleaseBuilds false
}
testCoverage {
jacocoVersion '0.8.10'
jacocoVersion '0.8.12'
}
namespace 'org.blitzortung.android.app'

}

def dagger_version = '2.51.1'
Expand Down Expand Up @@ -110,7 +111,7 @@ task jacocoTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest']) {
html.required.set(true)
}

getReports().getXml().setDestination(file("${buildDir}/reports/jacoco/jacocoRootReport/merged.xml"))
getReports().getXml().setDestination(file("${project.buildDir}/reports/jacoco/jacocoRootReport/merged.xml"))

def fileFilter = ['**/R.class', '**/R$*.class', '**/BuildConfig.*', '**/Manifest*.*', '**/*Test*.*', 'android/**/*.*', '**/*$ViewBinder*.*']
def debugTree = fileTree(dir: "$project.buildDir/intermediates/javac/debug/classes", excludes: fileFilter)
Expand Down

0 comments on commit d2730af

Please sign in to comment.