pernilla
12/20/2023, 8:45 PMandroidReports("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?