Status Update
Comments
ha...@embrace.io <ha...@embrace.io> #2
Androidx.activity actually doesn't do anything with those APIs and this behavior comes from the framework. Moving it to that component.
ch...@google.com <ch...@google.com> #3
Thank you for letting me know. Then which subject should we have instead of Android Public Tracker > App Development > Jetpack (androidx) > Activity ?
ha...@embrace.io <ha...@embrace.io> #5
Please provide the following additional information:
Please mention the steps to be followed for reproducing the issue with the given sample apk.
Android bug report capturing
After reproducing the issue, press the volume up, volume down, and power button simultaneously. This will capture a bug report on your device in the “bug reports” directory.
Alternate method
Navigate to “Developer options”, ensure “USB debugging” is enabled, then enable “Bug report shortcut”. Capture bug report by holding the power button and selecting the “Take bug report” option.
Screen record of the issue, for clarity
Please capture screen record or video of the issue using following steps:
adb shell screenrecord /sdcard/video.mp4
Subsequently use following command to pull the recorded file:
adb pull /sdcard/video.mp4
Note: Please upload the files to google drive and share the folder to android-bugreport@google.com, then share the link here.
ha...@embrace.io <ha...@embrace.io> #6
1 - If you click on "click me" button in the 1st Activity, 2nd Activity will start with option bundle. 2 - If you search in searchView, button in the 2nd Activity will be gone. 3 - click on device home button and then resume the app again, button in 2nd activity becomes visible which is unexpected. 4 - if you search again, click on device home button and resume the app again, button in the 2nd Activity will be gone as expected. (Unexpected behavior happens just in the 1st search)
Bug report capturing :
Screen recording :
Sample code :
APK :
ha...@embrace.io <ha...@embrace.io> #7
We have shared this with our product and engineering team and will update this issue with more information as it becomes available.
ch...@google.com <ch...@google.com> #8
The branch prior to 8.0 was 4.0 (since R8 started following AGP versions). This fix was not cherry-picked to the 4.0 branch.
From
I am guessing that maybe you have some dependencies that have been compiled with JDK 21, which doesn't work with D8/R8 4.0 and older versions.
ha...@embrace.io <ha...@embrace.io> #9
Understood. Thanks for the prompt response. The two that trigged this for me were both AndroidX libs, the latest versions of profilesinstaller
and lifecycle
, so I guess the platform libs are beginning to be built via JDK 21 eh?
Besides this issue, is this incompatibility stated somewhere or is explicitly communicated? We'd like to point to it to give our customers the heads up and explain why we are lagging behind.
Some apps, like those built on older versions of Unity, have a strict JDK 11 requirement, so they are unable to upgrade to the 8.x lines of Gradle and AGP. This means they'll likely not be able to upgrade to latest AndroidX libraries...
sg...@google.com <sg...@google.com> #10
The change applies cleanly on the 4.0 branch (AGP 7.4),
ha...@embrace.io <ha...@embrace.io> #11
Patching 4.0 would be fantastic! Let me know if there's anything I could do to get that going, e.g. open another issue, etc.
sg...@google.com <sg...@google.com> #12
We have a patch for both 4.0. and 3.3 in versions 4.0.72 and 3.3.93. The instructions at
ha...@embrace.io <ha...@embrace.io> #13
Ah, got it. So there's no plan to release office patch releases for all of AGP 7.4.x, but folks can monkey patch in order to get their app working with the latest libraries?
sg...@google.com <sg...@google.com> #14
Yes, exactly, just upgrading R8 by overriding the one shipped with AGP. Patches are usually only released for the current stable version.
Description
When using AGP 8.0.1 (Gradle 8.0, JDK 17), including
androidx.profileinstaller:1.4.0-alpha2
a dependency causes the folowing error while dexing.Caused by: com.android.builder.dexing.DexArchiveBuilderException:
Caused by: com.android.tools.r8.CompilationFailedException:
I've stripped the project down where this is the only dependency. Changing minSdk down to 21 didn't do anything either.
This issue goes away if I do EITHER:
The issue was actually first discovered using AGP 7.4.2 and Gradle 7.5.1 (JDK 11), but I figured I find the versions that would fix it so it might reduce the size of haystack in which the needle might be.
The reason I actually still care about such an old version is because Unity 2022.3 requires JDK 11, which maxes out AGP and Gradle at 7.x, and we want to continue to support it, yet still update to the latest platform deps. FWIW,
androidx.lifecycle.*:2.8.7
causes similar issues.