You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue happens after a navigation with clearHistory: true occurs and then the user proceeds to exiting the application via the back button. I noticed that this issue seemed to only happen on Android 11 or lower, testing with Android 12 did not result in the issue.
Locally I managed to workaround the issue by changing the code linked above,
From:
if(!isReloading){view.unmount();view=null;}
To:
if(!isReloading&&view){view.unmount();view=null;}
I could apply the fix myself, however I'm not fully aware of what this part of the code is doing so I'm hesitant to assume that just checking whether view has a value handles all use cases.