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

Gradle plugin that creates JaCoCo test reports for Android unit tests

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

Hello team, I cannot generate Jacoco report for the latest gradle 7.2.1. Tests are running and respective .exec files are created, but final report is missing under "build/reports/jacoco/jacocoMergeTest/jacocoMergeTest.xml" But for...

When try to add exclude like: ``` jacocoAndroidUnitTestReport { excludes.addAll(mutableListOf( "**/*_MembersInjector.class", "**/Dagger*Component*.class", "**/Dagger*Subcomponent*.class", "**/*Subcomponent\$Builder.class", "**/*Module_*Factory.class" )) } ``` Receives that: ``` java.lang.UnsupportedOperationException at Build_gradle$13.execute(build.gradle.kts:300) at Build_gradle$13.execute(build.gradle.kts:1) at org.gradle.internal.extensibility.ExtensionsStorage$ExtensionHolder.configure(ExtensionsStorage.java:173) ```

Is it possible to add support for mixed android/jvm projects? I mean, when some modules are android modules, and the other are pure jvm modules. Right now a Gradle Exception...

When using [PowerMock](https://github.com/powermock/powermock) in the unit tests, the classes declared with `@PrepareForTest` don't get coverage info due to following error: ``` [ant:jacocoReport] Classes in bundle 'app' do no match with...

Steps to reproduce : Jacoco Version : 0.1.5 Language : Kotlin [https://github.com/skyflowapi/skyflow-android/pull/93/](github repo) Steps: ``` added in build.gradle ( project level) : classpath 'com.dicedmelon.gradle:jacoco-android:0.1.5' added in build.gradle (module level) :...

Hi there, I'm using this plugin in combination with Dagger 2 and the latest Butterknife. For some reason the excludes are not taken into account on the generation of the...

classpath 'com.dicedmelon.gradle:jacoco-android:0.1.5' with Could not find com.dicedmelon.gradle:jacoco-android:0.1.5. why

Do you have any plan to migrate to another host? > Developers who publish artifacts on JCenter should migrate their packages to a new host, such as Maven Central. reference:...

Gradle versin: ``` huanghaohang@huanghaohang-desktop:/workspace/project/iop-android$ ./gradlew -version WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (file:/home/huanghaohang/.gradle/wrapper/dists/gradle-4.6-all/bcst21l2brirad8k2ben1letg/gradle-4.6/lib/groovy-all-2.4.12.jar) to method java.lang.Object.finalize() WARNING: Please consider reporting this to...

I am using Android Gradle Plugin 7.0.0-rc01 and Zulu JDK 11 and get the following error when running the task jacocoTestReport. ``` java.lang.NoClassDefFoundError: jdk/internal/reflect/GeneratedSerializationConstructorAccessor1 at jdk.internal.reflect.GeneratedSerializationConstructorAccessor1.newInstance(Unknown Source) at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) at...