Status Update
Comments
uc...@google.com <uc...@google.com>
ar...@google.com <ar...@google.com>
go...@gmail.com <go...@gmail.com> #2
Attached is a zip file with an example project I created which will make it easy to reproduce the issue.
- Unzip and check the project out in android studio.
- Run
gradle clean app:jacocoTestReportDebug
. - Open
$projectDir/build/reports/jacoco/jacocoTestReportDebug/html/index.html
in a web browser to see the expected result. - Now go to
$projectDir/app/build.gradle
and uncomment line 22enableTransformForLocalTests = true
. - Repeat steps 2 and 3 to see the incorrect coverage.
In the case of this project, I wrote a simple test which does not use the dependency I created, but in more complex projects this enableTransformForLocalTests
needs to be set to true.
I hope this will give more insight into the problem, regards, Michael
pr...@gmail.com <pr...@gmail.com> #3
ms...@vivino.com <ms...@vivino.com> #4
apply plugin: 'dagger.hilt.android.plugin'
in my build script
Not sure if this can help...
iv...@meta.com <iv...@meta.com> #5
Hello, We faced similar(same?) issue. I see bunch of warnings in jacoco output during coverage processing: [WARN] Execution data for class xxx/xxx/xxx/xxx does not match. I found workaround for this problem, but it looks very fragile. You can add build/intermediates/asm_instrumented_project_classes/<Product>Debug/ folder to classDirectories in jacoco report task. This will fix problem with instrumented class files.
nd...@gmail.com <nd...@gmail.com> #6
Im getting 0% JaCoCo coverage on @AndroidEntryPoint and @HiltAndroidApp classes
sl...@gmail.com <sl...@gmail.com> #7
[Deleted User] <[Deleted User]> #8
to...@gmail.com <to...@gmail.com> #9
abstract class MyActivity : AppCompatActivity() {
@AndroidEntryPoint
class EntryPoint : MyActivity()
}
abstract class MyFragment : Fragment() {
@AndroidEntryPoint
class EntryPoint : Fragment()
}
I am lifting the code by adding nested class and inheriting the one that implements most of the code. This way I can keep the code in one location. Still, it is not convenient as I need to suffix in all AndroidManifest the activities with "$EntryPoint". For example, com.my.project.MyActivity$EntryPoint
.
sl...@gmail.com <sl...@gmail.com> #10
public class EngagementActivity extends EngagementActivityImpl {
// This is so stupid - Hoping Jacoco 0.9.x will have a fix for this...
}
class EngagementActivityImpl extends PopupActivity {
}
This is a basic "lift" example in Java.
Only the "dummy" needs the annotation. Its pretty straight forward and doesn't add too much overhead - just annoying AF.
c....@gmail.com <c....@gmail.com> #11
- Version of Gradle Plugin: 7.2.1
- Version of Gradle: Gradle Wrapper with Gradle 7.4.2
- Version of Java: OpenJDK 11.0.12
- OS: macOS Monterrey (12.4)
In our case, we have tried the several workarounds (avoid using the Hilt plugin, lifting the code) but unfortunately, they didn't work. The only workaround that was helpful was the one described here:
st...@gmail.com <st...@gmail.com> #12
Since AGP 7.2.0 our projects are impacted by this issue, too.
Configuration:
- AS: Chipmunk Patch 1
- AGP: 7.2.1
- Gradle: 7.3.3
- Java: OpenJDK 11
- Kotlin: 1.7.0
- Jacoco: 0.8.7
- Hilt: 2.42
I created a minimal example of the project setup:
zo...@gmail.com <zo...@gmail.com> #13
I'm seeing the same issue, but with newer versions so unfortunately we're still dealing with this :)
Configuration:
AS: Flamingo AGP: 8.0.0 Gradle: 8.0 Java: AS embed JDK (17) Kotlin: 1.8.20 Jacoco: 0.8.8 Hilt: 2.45
Previously I was able to use asm_instrumented_project_classes
workaround for setting the class directory of my kotlin classes but on AGP 8.0.0 this stopped working (the folder was no longer being generated).
When switching back to the tmp/kotlin-classes
directory for kotlin classes, I started seeing the [WARN] Execution data for class xxx/xxx/xxx/xxx does not match
error again, listing every class I added @AndroidEntryPoint
to, and not having proper coverage data for these classes.
I've switched to using the "Lifted" workaround from #7/#9 and that seems to be working well (if not slightly annoying to make work with the navigation library), but obviously a proper workaround would be greatly appreciated...
sl...@gmail.com <sl...@gmail.com> #14
sl...@gmail.com <sl...@gmail.com> #15
he...@gmail.com <he...@gmail.com> #16
it...@gmail.com <it...@gmail.com> #17
jo...@gmail.com <jo...@gmail.com> #18
zo...@gmail.com <zo...@gmail.com> #19
I've created a similar app to #12, using the latest current versions of AGP, Kotlin, Hilt, etc.
The same issue exists still.
xa...@gmail.com <xa...@gmail.com> #21
can you try to use the following path?
"...\...\build\intermediates\classes\normalDebug\transformNormalDebugClassesWithAsm\dirs\"
zo...@gmail.com <zo...@gmail.com> #22
#21 - that seems to work, I can make a branch in the test app.
I am not familiar with this dir/path, is it safe to use? Is this changing again in the future?
ms...@vivino.com <ms...@vivino.com> #23
zo...@gmail.com <zo...@gmail.com> #24
bp...@gmail.com <bp...@gmail.com> #25
ga...@google.com <ga...@google.com> #26
I've filed a feature request for AGP to allow generating a single coverage report for unit and device tests, please +1 it:
Workaround until https://issuetracker.google.com/329683722 is fixed:
In order to generate a unified report yourself, you should fetch .class
files using AGP APIs. Here is an example (based on
private val coverageExclusions = listOf(
// Android
"**/R.class",
"**/R\$*.class",
"**/BuildConfig.*",
"**/Manifest*.*"
)
androidComponentsExtension.onVariants { variant ->
val myObjFactory = project.objects
val allJars: ListProperty<RegularFile> = myObjFactory.listProperty(RegularFile::class.java)
val allDirectories: ListProperty<Directory> = myObjFactory.listProperty(Directory::class.java)
val reportTask =
tasks.register("jacoco${variantName.capitalize()}Report", JacocoReport::class) {
classDirectories.setFrom(
allJars,
allDirectories.map { dirs ->
dirs.map { dir ->
myObjFactory.fileTree().setDir(dir).exclude(coverageExclusions)
}
}
)
}
variant.artifacts.forScope(ScopedArtifacts.Scope.PROJECT)
.use(reportTask)
.toGet(
ScopedArtifact.CLASSES,
{ _ -> allJars },
{ _ -> allDirectories },
)
}
ka...@globant.com <ka...@globant.com> #27
AGP = 7.2.1
Jacoco = 0.8.12
Android studio laguna
Android target sdk =34
Description
IMPORTANT: Please readhttps://developer.android.com/studio/report-bugs.html carefully and supply
all required information.
Studio Build:
Link to github issue:https://github.com/google/dagger/issues/1982#issuecomment-657731654
Steps to Reproduce:
Given a class
and a test class
and given JaCoCo Gradle Plugin version 0.8.5
Expected: Some code coverage on
MyActivity
class. Actual:: 0% coverageNotes:
@AndroidEntryPoint MyActivity : MyActivityBase()
whereclass ÀctivityBase : AppCompatActivity()
There is coverage reported onActivityBase
but not onMyActivity
.This is surely to do with the fact that Hilt is adding an injecting class between
MyActivity
and it's super class.This is a Generic example, please tag me if you require any more information.