gradle-android-junit-jacoco-plugin icon indicating copy to clipboard operation
gradle-android-junit-jacoco-plugin copied to clipboard

How to configure allowed (includes) package names?

Open johnjohndoe opened this issue 3 years ago • 1 comments
trafficstars

I am trying to use version 0.16.0 in my multi-module Android application project which has one Android application module, multiple Android library modules and multiple Java library modules.

When I execute the jacocoTestReportDevDebug task in Android Studio the following failure occurs:

> Task :app:testDevDebugUnitTest

MyTest > initializationError FAILED
    java.lang.IllegalStateException at ClassReloadingStrategy.java:503
        Caused by: java.lang.UnsupportedOperationException at InstrumentationImpl.java:-2
        Caused by: java.lang.UnsupportedOperationException at InstrumentationImpl.java:-2

The failure does not occur when I execute the task from the shell.

This could theoretically be fixed by defining only packages of my projects to be included as can be done with a jacoco configuration block:

tasks.withType(Test) {
    jacoco {
        includes = [
                "com.example.android.*" // Prevents IllegalStateException at ClassReloadingStrategy.java
        ]
    }
}

How can I configure such includes within the junitJacoco configuation block?

johnjohndoe avatar Oct 28 '22 18:10 johnjohndoe

hello, Hi, have you solved this problem?

renmiantaohua123 avatar Nov 07 '24 05:11 renmiantaohua123