Assigned
Status Update
Comments
al...@google.com <al...@google.com>
va...@google.com <va...@google.com> #2
Any updates on this? It's been a month already since I reported it, and it seems this crash is occurring quite frequently for my users.
po...@gmail.com <po...@gmail.com> #3
I am still regularly receiving reports about this issue, and it seems it has not been addressed in the latest 1.4.0-rc01 release.
al...@google.com <al...@google.com> #4
Seems like a fairly easy fix on our end. I'll see to that it is fixed in 1.5.
Description
Component used: androidx.core:core-ktx Version used: 1.9.0 Devices/Android versions reproduced on: LG (API 26), OnePlus (API 31)
I am following this advice to display content edge-to-edge in my app.
To display a splashscreen in my app I'm setting a different theme in the manifest which is then changed in onCreate with
setTheme
.The code below works perfectly fine on my OnePlus (API 31) as well as on my LG G6 (API 26).
This however is not working properly on my LG G6 (API 26). There is still the splashscreen theme set, so I see my app logo behind UI elements.
When I look at the implementation of
WindowCompat.setDecorFitsSystemWindows
, I see there are indeed two different versions for both of my smartphones.I consider this a bug since I'm expecting the call order of these two method invocations to be independent of each other.