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
Hi!
I used your library and found it so handy and straight forward but my app crashed when I tried to push a TOP notification.
Issue description:
In your android target, when notifications is disabled then you request to open notification settings to inform user to enable notifications. In this part of code especially the code below:
the code is fine but missing one thing, The Activity intent flag 'FLAG_ACTIVITY_NEW_TASK' as result of calling the activity from outside an activity context.
Solution steps:
Add the required flag to the requesting intent to solve this issue.
Thanks :)
The text was updated successfully, but these errors were encountered:
Hi!
I used your library and found it so handy and straight forward but my app crashed when I tried to push a TOP notification.
Issue description:
In your android target, when notifications is disabled then you request to open notification settings to inform user to enable notifications. In this part of code especially the code below:
the code is fine but missing one thing, The Activity intent flag 'FLAG_ACTIVITY_NEW_TASK' as result of calling the activity from outside an activity context.
Solution steps:
Add the required flag to the requesting intent to solve this issue.
Thanks :)
The text was updated successfully, but these errors were encountered: