Status Update
Comments
ap...@google.com <ap...@google.com> #2
Information redacted by Android Beta Feedback.
ap...@google.com <ap...@google.com> #3
Thanks for reporting this issue. We have passed this to the development team and will update this issue with more information as it becomes available.
jb...@google.com <jb...@google.com> #4
What
More information
Deep sleep stops working. Restart helps
Where
Build and device data
- Build Number: google/husky_beta/husky:16/BP22.250221.013/13218340:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
- SoC Revision: Zuma B1
Debugging information
Usługi Google Play
com.google.android.gms
Version 250934035 (25.09.34 (260400-738842635))
System App (Updated)
Android System WebView
com.google.android.webview
Version 699804033 (134.0.6998.40)
System App (Updated)
Network operator: Orange
SIM operator: Orange
Filed by Android Beta Feedback. Version (Updated): 2.46-betterbug.external_20241023_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
Description
Having just a
remember { }
around calls togetBackStackEntry(route)
causes new entries with the same id to use the old remember scope which can cause crashes. We should instead be telling devs to useremember(entry) { }
using the entry from thecomposable
function lambda scope as the input to theremember
calculation. This way, whenever the entry object changes, we also recompose theremember
and we never get a stale entry.