Status Update
Comments
lu...@google.com <lu...@google.com> #2
hu...@google.com <hu...@google.com> #3
Sure, I'm attaching 2 of the .flat
files.
lu...@google.com <lu...@google.com> #4
Thanks Hung! Taking a look at the two compiled resources, they both encode the resource source file as absolute path. The difference being a/b/c/d/ProjectCopy1/my/resource.xml and a/b/c/d/ProjectCopy2/my/resource.xml.
While, relative path support in compiled resources covers most cases, there were some where we fallback to the absolute path e.g for resource processing, dynamic features. So this behaviour isn't entirely unexpected.
However, I'll take a look into why the absolute path is being used for these resources and see how much effort is wil be to use relative resource paths.
hu...@google.com <hu...@google.com> #5
(Updating to P1 to match
lu...@google.com <lu...@google.com> #6
Moving this issue to P2 as this was a known fallback case from enabling relative resources and is more performance related than an issue.
hu...@google.com <hu...@google.com> #7
Just a note: Files containing absolute paths will likely cause correctness issues (not just performance issues), because when these files are copied from the Gradle build cache over to a different project, these paths can't be used on that project.
Description
This issue came up when we investigated another issue ( https://issuetracker.google.com/277978832 - Cache misses for tasks PackageForUnitTest and AndroidUnitTest).
Tested Version
AGP 7.4.1 and AGP @ HEAD
Steps to Reproduce
We get the following differences:
Side note: The following files also differ (they contain absolute paths), but I'm guessing that it's intended (pls correct me otherwise).
This shows that the outputs of
:library:compileDebugLibraryResources
(CompileLibraryResourcesTask
) can change depending on the project location, which means that downstream tasks consuming these outputs will have cache misses.Note: The build scan provided at https://issuetracker.google.com/277978832#comment3 , bullet 1. It probably has the same root cause. To trigger this transform, delete
AarResourcesCompilerTransform
to compile resources from external dependencies has this issue too, as shown in the~/.gradle/caches/transforms-3
and run./gradlew :library:processDebugUnitTestResources
.Potential Root Cause
com.android.aaptcompiler.ResourceFile
com.android.aaptcompiler.Source
), when tested with the above sample project. This absolute path will probably impact the output (seeserializeCompiledFileToPb
incom.android.aaptcompiler.Container#addFileEntryImpl