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
We have couple hundreds of crashes with an exceptions
Fatal Exception: java.lang.IllegalStateException
FragmentManager has been destroyed
and
Fatal Exception: java.lang.IllegalStateException
Can not perform this action after onSaveInstanceState
It seems like those are thrown after fragment is stopped, and just then Client.requestLoginPrompt tries to invoke function LoginPromptManager.showLoginPromptIfAbsent. Exception is thrown at this line initializeLoginPrompt(loginPromptConfig).show(supportFragmentManager, fragmentTag).
Can you add couple checks for FragmentManager to not crash there? We implemented temporary solution, but those should be fixed at the core.
The text was updated successfully, but these errors were encountered:
We have couple hundreds of crashes with an exceptions
and
It seems like those are thrown after fragment is stopped, and just then
Client.requestLoginPrompt
tries to invoke functionLoginPromptManager.showLoginPromptIfAbsent
. Exception is thrown at this lineinitializeLoginPrompt(loginPromptConfig).show(supportFragmentManager, fragmentTag)
.Can you add couple checks for
FragmentManager
to not crash there? We implemented temporary solution, but those should be fixed at the core.The text was updated successfully, but these errors were encountered: