You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are seeing remote build cache misses on the com.android.build.gradle.tasks.TransformClassesWithAsmTask. It looks like this is because @Input is used instead of a combination @InputFile and @get:PathSensitive(PathSensitivity.RELATIVE) in the AndroidEntryPointClassVisitor.
This causes a 10+ second cache miss in every module where hilt is applied. This can add a significant amount of time in multi-module projects with hundreds of modules.
We are seeing remote build cache misses on the
com.android.build.gradle.tasks.TransformClassesWithAsmTask
. It looks like this is because@Input
is used instead of a combination@InputFile
and@get:PathSensitive(PathSensitivity.RELATIVE)
in theAndroidEntryPointClassVisitor
.dagger/java/dagger/hilt/android/plugin/src/main/kotlin/dagger/hilt/android/plugin/AndroidEntryPointClassVisitor.kt
Lines 27 to 30 in ff62b19
The text was updated successfully, but these errors were encountered: