Hi guys
My project runs unit test on 4 emulators, which generate the coverage files.
sonarqube {
androidVariant 'playstoreDebug'
properties {
...
property 'sonar.junit.reportsPath', "${buildDir}/allJunit"
property 'sonar.jacoco.reportMissing.force.zero', true
property 'sonar.jacoco.reportPath', "${buildDir}/jacoco/testPlaystoreDebugUnitTest.exec"
property 'sonar.jacoco.itReportPath', fileTree(dir: ${buildDir}, includes: ['**/*.ec'])
...
}
}
Issue is sonarqube doesnt generate the coverage report while same path works for jacoco.
Please help !