Hi, don’t know if this is the appropriate channel ...
# android
p
Hi, don’t know if this is the appropriate channel or not. Probably not, but it’s related to android and kover. (The kover channel is archived). But we’ve switched to run kover on our multimodule app code and it works great. I have one question regarding setting output path of the report. Our current config is:
Copy code
androidReports("wipDebug") {
        defaults {
            xml {
                onCheck = false
                setReportFile(layout.buildDirectory.file("kover-report/result.xml"))
            }

            // configure HTML report
            html {
                onCheck = false
                title = "Coverage Report"
                charset = "UTF-8"
                setReportDir(layout.buildDirectory.dir("kover-report/html-result"))
            }
        }

        log {
            onCheck = true
            header = null
            format = "<entity> line coverage: <value>%"
        }
    }
But the setReportDir doesn’t seem to work. It’s not printing to anything else but default folder, Anyone else having this issue?