jacoco-android-gradle-plugin
jacoco-android-gradle-plugin copied to clipboard
Configure report output directory
Similar to FindBugs and PMD it would be useful if you could specify the output path for the report like this:
reports {
xml {
enabled = true
destination "$buildDir/reports/coverage/coverage.xml"
}
html {
enabled = true
destination "$buildDir/reports/coverage/coverage.html"
}
}