-
-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FragmentManager is already executing transactions #29
Comments
The same issue. |
I have faced this issue too |
#30 |
RxPermissions already got over this issue here tbruyelle/RxPermissions#214 |
As far as I understand, the main idea is to use |
I face this similar problem when I was requesting the system permission e.g WRITE_SETTINGS and was having a call to code which wrapped inside ask permission on the onResume of a fragment that causes this exception to occur. Just make sure about the call you are making inside onResume in your code don't include any call to ask permission inside onResume. |
hi kid |
this happens when asking permission in fragments onViewCreated method .
adding some delay fixes the issue , its because , we trying add fragment when fragmentManager is already in execution .
The text was updated successfully, but these errors were encountered: