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

Gradle plugin that generates JaCoCo reports from an Android Gradle Project

Results 25 gradle-android-junit-jacoco-plugin issues
Sort by recently updated
recently updated
newest added

The plugin fails with the below error when running `jacocoTestReport`, if using OpenJDK 11.0.8 (as included in Android Studio 4.2 RC1), and when `includeNoLocationClasses = true` (which seemingly is required...

recently I added this plugin in one of my sample projects. the coverage task works perfectly. however it has impacted the `assembleRelease` / `assembleDebug` task in a manner that the...

```A problem occurred configuring project ':libaums'. > Could not create task ':libaums:testDebugUnitTest'. > java.lang.NullPointerException (no error message) * Try: Run with --info or --debug option to get more log output....

Dear Team, I want to implement Jacoco in my Android Studio (gradle v 3.5). Done all the changes required in both gradles. The jacoco report is getting generated but no...

needs info

Mi config: ``` junitJacoco { jacocoVersion = '0.8.5'// type String ignoreProjects = [] // type String array excludes // type String List includeNoLocationClasses = false // type boolean includeInstrumentationCoverageInMergedReport =...

I currently see a same class error when trying to use Kotlin DSL with the snapshot version. I'm unsure if it is because I haven't configured the plugin properly with...

Older Jacoco versions are incompatible with the Kotlin 1.5.x compiler. See [this](https://github.com/jacoco/jacoco/issues/1155) for more information. However, setting `jacocoVersion = '0.8.7'`seems to crash tests.

I try to us this plugin instead of the old unsupported jacoco plugin. https://github.com/nextcloud/android-library/pull/612/files#diff-49a96e7eea8a94af862798a45174e6ac43eb4f8b4bd40759b5da63ba31ec3ef7L16 Here you can see how I changed it. But when running ./gradlew assemble or ./gradle tasks...

Dear, I am using your library to generate test report from both Android tests and local tests, and then push the coverage report to sonarqube, but I often have to...