Fixed
Status Update
Comments
su...@google.com <su...@google.com> #2
Information redacted by Android Beta Feedback.
ch...@gmail.com <ch...@gmail.com> #3
Thank you for reporting this issue. We’ve shared this with our product and engineering teams and will continue to provide updates as more information becomes available.
[Deleted User] <[Deleted User]> #4
Upon more testing myself, it looks like an additional home button press is being invoked when swiping home. You can verify this within Nova Launcher by setting a "Home button" action in Nova Settings > Gestures and inputs. Observe that the additional action you set will also be activated occasionally when you swipe home. In the attached screen recording, I've set the extra home button action to open the Google Assistant.
Tapping the screen during the return-to-home transition on the past couple Android releases would cancel the animation and you'd instantly end up on your home screen. It looks like that's what is happening here as well -- the extra invocation of the home button press is cancelling the transition animation (and with Nova, running the action you set if any). I couldn't say whether or not that's related to the content flat out not appearing though.
https://drive.google.com/file/d/1_pmlVTs78SbuiTBatk4Q_KDx88nCrKoX/view?usp=drive_web (screen-20230413-004652.mp4)
Tapping the screen during the return-to-home transition on the past couple Android releases would cancel the animation and you'd instantly end up on your home screen. It looks like that's what is happening here as well -- the extra invocation of the home button press is cancelling the transition animation (and with Nova, running the action you set if any). I couldn't say whether or not that's related to the content flat out not appearing though.
ro...@gmail.com <ro...@gmail.com> #5
I am seeing this issue also on my Pixel 7 Pro and Nova 7 with a couple of additions. First there are instances where I will use the home screen gesture and all that I see is my home screen wallpaper and the gesture bar. If I repeat the gesture, my app icons will usually re-appear. I'm not sure that I agree with the previous comments. My home screen gesture is set to app drawer.
su...@google.com <su...@google.com> #6
Have this with my P7Pro. Just updated and all my home screen icons go translucent. Very annoying. Have tried restarting. Works for a bit then happens again.
su...@google.com <su...@google.com> #7
278154563 occurring on pixel 4a/5g with Action and Nova launchers.
ch...@instacart.com <ch...@instacart.com> #8
Happening for me on my Pixel 6 with Nova launcher
Description
Version used: 1.0.0-alpha12
After upgrading to alpha12, all of my Workers written in Kotlin (and CoroutineWorkers, FWIW), complain about the 'Result' return value with an error that says: "One type argument expected for class Result<out T>"
It appears that the Kotlin standard library contains a public inline Result class already:
The Kotlin Result class is automatically available in every file, so Android Studio (3.2.1) doesn't offer to import the androidx.work.Result class, causing the error since it assumes you want to use the already available kotlin Result.
There were two workarounds, neither very friendly:
1) Use the fully qualified androidx.work.Result
2) Manually adding the androidx.work.Result import statement
Note that:
- Using the fully qualified name, then using the Android Studio option to add import did not work
- Removing the doWork method entirely and using Android Studio's quick fix to implement the method did add an import to androidx.work.Result, so new classes would avoid running into this issue.