ChaitanyaPramod / findbugs-android

Gradle plugin that creates FindBugs reports for android projects
https://findbugs-android.chaitanyapramod.com/
MIT License
130 stars 9 forks source link

Report Files Format #15

Closed amrbrkt closed 6 years ago

amrbrkt commented 6 years ago

Hey,

I got "XML" report files by default, how can I change these configurations to get in an "HTML" format?

ChaitanyaPramod commented 6 years ago

You can add the following snippet to get HTML reports

tasks.withType(FindBugs) {
    reports {
        xml.enabled = false
        html.enabled = true
    }
}