Status Update
Comments
sp...@google.com <sp...@google.com> #2
bi...@google.com <bi...@google.com> #3
hu...@google.com <hu...@google.com> #4
Hi Marco, thank you for the report. We will take a look.
bi...@google.com <bi...@google.com> #5
je...@google.com <je...@google.com> #6
The beta 1 sdk_gphone build won't automatically enable the change even the screen is sw600dp or greater. Future betas and the final release candidate will automatically enable the change if the screen is sw600dp or greater.
You can enable the forced change manually in one of the following two ways:
- With
adb shell
: Rundevice_config put window_manager ignore_activity_orientation_request true
to enable the change for all apps. - With Settings: enter "app info" -> "aspect ratio" -> "full screen" to enable the change for one app.
hu...@google.com <hu...@google.com> #7
I tried with the Pixel Tablet emulator with build number `BP22.250124.008` and the `UNIVERSAL_RESIZABLE_BY_DEFAULT` flag enabled and now it works as expected.
hu...@google.com <hu...@google.com> #8
We've fixed this issue in
To work around this issue for AGP versions less than 8.10.0-alpha03, please remove android.enableJetifier = true
in gradle.properties
.
al...@jetbrains.com <al...@jetbrains.com> #9
Thank you! :)
an...@google.com <an...@google.com> #10
Thank you for your patience while our engineering team worked to resolve this issue. A fix for this issue is now available in:
- Android Studio Meerkat Feature Drop | 2024.3.2 Canary 3
- Android Gradle Plugin 8.10.0-alpha03
We encourage you to try the latest update.
If you notice further issues or have questions, please file a new bug report.
Thank you for taking the time to submit feedback — we really appreciate it!
Description
Environment
Description
When using an isolated project (org.gradle.unsafe.isolated-projects=true) setup with the following structure:
app
(withcom.android.application
)lib
(withcom.android.library
)The
app
module depends onlib
via:During sync, the following error occurs:
This issue causes configuration cache problems.
The sample of the project has been attached.