My android app is multi module project:
include (android-app/kotlin-android)\':application\', (pure kotlin)\':presentation\', (pure kotlin)\':domain\', (andr
Solution is to add this this gradle task in build.gradle for module:
task copyTestClasses(type: Copy) { from "build/tmp/kotlin-classes/debugUnitTest" into "build/intermediates/classes/debug" }
And run:
gradlew copyTestClasses
Then generate code coverage report without problems.