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

Hi! Thank you for your plugin. ## Use case || Steps to reproduce Setup one of the project modules to be a dynamic feature by changing: - `apply plugin: 'com.android.library'`...

When i do jacoco coverage with this plugin, tests written in kotline will not recognize as unittest in sonarqube. Here is my gradle configuration `apply plugin: 'jacoco-android' jacoco { toolVersion...

I can't use this plugin for a java library module in android.

The generated classes for databind are in different paths than what is expected by the plugin. Following is the paths based on the android databind codelab project. `./app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/android/databinding/basicsample/databinding/SolutionBindingImpl.class ./app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/android/databinding/basicsample/databinding/PlainActivitySolution5BindingImpl.class ./app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/android/databinding/basicsample/databinding/PlainActivitySolution4BindingImpl.class`...

Hey, Our project structure has a main application as the top level, with a module (which is maintained by us) as a dependency of the main app. I have been...

This plugin works fine for regular JVM unit tests (`testDebugUnitTest` task), but any instrumented unit tests in the `androidTest` folder aren't run or considered in the JaCoCo report. Is there...

Gradle recommends to use the task configuration avoidance APIs whenever tasks are created in custom plugins. > In a nutshell, the API allows builds to avoid the cost of creating...

Use case: code coverage for android library. See: **https://github.com/heershingenmosiken/android-assertions** repository, branch **jacoco-android** gradle module **android-assertions**. Tests runs well. There are test report. Jacoco runs well, but inside it shows that...

I would really like to do something like this... Is it this possible? ``` // val jacocoAndroidUnitTestReport by existing(JacocoAndroidUnitTestReportExtension::class) { // violationRules { // rule { // limit { //...

Is there any way to run jacoco in offline mode? It may be useful when we have some legacy powermock tests (https://github.com/powermock/powermock/wiki/Code-coverage-with-JaCoCo)