fixing missing :vector test coverage in jacoco report

- pulling application module coverage from the gplay variant as we're only including main sourceset files
This commit is contained in:
Adam Brown 2022-04-13 14:17:24 +01:00
parent 2761b35b6f
commit 8bbb5e9c93

View file

@ -17,7 +17,7 @@ def initializeReport(report, projects, classExcludes) {
projects.each { project ->
switch (project) {
case { project.plugins.hasPlugin("com.android.application") }:
androidClassDirs.add("${project.buildDir}/tmp/kotlin-classes/debug")
androidClassDirs.add("${project.buildDir}/tmp/kotlin-classes/gplayDebug")
androidSourceDirs.add("${project.projectDir}/src/main/kotlin")
androidSourceDirs.add("${project.projectDir}/src/main/java")
break