Fixed
Status Update
Comments
an...@google.com <an...@google.com> #3
(reposting under work account)
We have been hitting this issue constantly. Is it possible to configure those tasks to be non cacheable as a workaround or is that only possible inside of AGP?
pa...@gmail.com <pa...@gmail.com> #4
Currently the only way to disable caching for dexing transforms is to patch AGP manually by providing a patched DexTransform.kt
file in buildSrc
. Please see
[Deleted User] <[Deleted User]> #5
Thanks. Ignoring potential build perf impacts, if we essentially commented out the processIncrementally
block in DexingTransform.kt
and always ran non-incrementally, would that workaround this issue?
el...@gmail.com <el...@gmail.com> #6
Yes, always run the dex transform non-incrementally is another workaround.
so...@gmail.com <so...@gmail.com> #7
Is it possible to do same patch with included build?
mu...@gmail.com <mu...@gmail.com>
zr...@gmail.com <zr...@gmail.com>
an...@gmail.com <an...@gmail.com> #8
I guess so, could you give it a try?
20...@gmail.com <20...@gmail.com> #9
I've tried(not very neat) but it only work with buildSrc
Anyway, what about issue, I've tried a lot of attempts to fix and helped only turn off jacoco transformation `useJacocoTransformInstrumentation = false`.
What was changed in agp 7.4.x from 7.3.1 that break this?
Anyway, what about issue, I've tried a lot of attempts to fix and helped only turn off jacoco transformation `useJacocoTransformInstrumentation = false`.
What was changed in agp 7.4.x from 7.3.1 that break this?
Description
Similar to Issue 333565234 .
Even after the fix for that issue, there can be errors when running lint on a multi-module project in which lint with K2 UAST has been enabled for some modules but not others.
Errors often take the following form:
Repro project here