Obsolete
Status Update
Comments
ad...@google.com <ad...@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.
ch...@gmail.com <ch...@gmail.com> #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.
me...@gmail.com <me...@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.
en...@gmail.com <en...@gmail.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.
mr...@gmail.com <mr...@gmail.com> #7
278154563 occurring on pixel 4a/5g with Action and Nova launchers.
ad...@google.com <ad...@google.com> #8
Happening for me on my Pixel 6 with Nova launcher
[Deleted User] <[Deleted User]> #9
I have the same issue, I found switching from gesture navigation to 3 button stops the issue with Nova. The issue persists in Pixel Launcher and Lawnchair with 3 button enabled.
[Deleted User] <[Deleted User]> #10
Also happening on Pixel 6 Pro with Nova Launcher.
pa...@gmail.com <pa...@gmail.com> #11
Same issue as well, using current Nova Launcher beta as default launcher. My device and OS is the same. A14 Beta 1 and Pixel 7 (panther).
Description
I'm seeing the following crashes on the variety of devices running Nougat according to Google Play Developer console. The issues seems to be occurred only on Android 7 but not all Android 7 users are affected. This crash occurs when launching activity.
---StackTrack----
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.xxx/com.xxx.components.activity.LauncherActivity}: java.lang.ClassCastException: Cannot cast android.app.Application to com.xxx.xxApplication
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2742)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2803)
at android.app.ActivityThread.-wrap14(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1548)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:6246)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:869)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:759)
Caused by: java.lang.ClassCastException: Cannot cast android.app.Application to com.xxx.xxApplication
at java.lang.Class.cast(Class.java:2308)
at com.xxx.components.activity.AbstractBaseActivity.setupComponent(AbstractBaseActivity.java:151)
at com.xxx.components.activity.AbstractBaseActivity.onCreate(AbstractBaseActivity.java:71)
at com.xxx.components.activity.LauncherActivity.onCreate(LauncherActivity.java:124)
at android.app.Activity.performCreate(Activity.java:6710)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1119)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2695)
... 9 more
----------------
-----AbstractBaseActivity.setupComponent----
private void setupComponent() {
AppComponentProvider provider = AppComponentProvider.class.cast(getApplication());
:
:
}
*xxApplication is implementing AppComponentProvider.
------------------------------------------------
-----AndroidManifest------
<application
android:name=".xxApplication"
---------------------------
I cannot reproduce this issue, and I don't understand why getApplication returns android.app.Application instead of my com.xxx.xxApplication.
It would be very helpful if you can figure this out, thanks.