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
If an activity that does not own the drawer gets destroyed, DebugDrawerLifecycleCallbacksonActivityDestroyed(Activity activity) de-registers the lifecycle hooks for the drawer and its modules
This manifests in the drawer modules not having their onStart/onStop/onPause/onResume/onOpened/onClosed handler methods being called any longer, even though the drawer is still accessible
All other DebugDrawerLifecycleCallbacks methods check first if the activity that invoked the lifecycle is the owner of the drawer before delegating, this needs to happen here too
The text was updated successfully, but these errors were encountered:
If an activity that does not own the drawer gets destroyed,
DebugDrawerLifecycleCallbacks
onActivityDestroyed(Activity activity)
de-registers the lifecycle hooks for the drawer and its modulesThis manifests in the drawer modules not having their
onStart/onStop/onPause/onResume/onOpened/onClosed
handler methods being called any longer, even though the drawer is still accessibleAll other
DebugDrawerLifecycleCallbacks
methods check first if the activity that invoked the lifecycle is the owner of the drawer before delegating, this needs to happen here tooThe text was updated successfully, but these errors were encountered: