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
{{ message }}
This repository has been archived by the owner on Mar 16, 2021. It is now read-only.
then we create a different fragment. All these fragments are related to one scope which we keep inside activity and after the user leaves activity component is destroyed.
What we noticed that after one such scenario we are leaking 10 presenters. And if the user does it a couple of times we will have 20 leaked presenters.
Moreover, we investigated and found that we are using popBackStack very actively throughout our app, that mean we have many presenters which are leaking.
How can we fix it?
The text was updated successfully, but these errors were encountered:
ar-g
changed the title
Presenters leaking if manually clear BackStack with fragments.
Presenters are leaking if do FragmentManager.popBackStack()
Apr 17, 2017
this is a duplicate of #33 and #68.
We are already working on that on #78.
Thank you for the repot. But because we know that issue and we have already some issues for that I will close it...
At this time we have to deadline for fixing this bug.
But sine we have the same trouble with our internal projects we are looking forward to fix that as soon as possible.
However. You can help by reviewing (and maybe collaborate) on #78!
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
First of all thank you for a library we are using it for all our presenters and fragments, around 50.
Recently we came across very strange behavior we have an activity with a chain of 10 fragments and when user reach the last one we are doing
then we create a different fragment. All these fragments are related to one scope which we keep inside activity and after the user leaves activity component is destroyed.
What we noticed that after one such scenario we are leaking 10 presenters. And if the user does it a couple of times we will have 20 leaked presenters.
Moreover, we investigated and found that we are using
popBackStack
very actively throughout our app, that mean we have many presenters which are leaking.How can we fix it?
The text was updated successfully, but these errors were encountered: