We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
add deleteToken method call when user logout
The text was updated successfully, but these errors were encountered:
I think you could handle your logout yourself and add:
// Remove FCM instance FCM.deleteInstance() .then(() => alert(`Token deleted`)) .catch((err) => console.log(err));
To delete the token.
Sorry, something went wrong.
I've tried that and it doesn't seem to work.
Even after executing await FCM.deleteInstance() you still get the same token when executing await PushNotifications.register().
await FCM.deleteInstance()
await PushNotifications.register()
No branches or pull requests
add deleteToken method call when user logout
The text was updated successfully, but these errors were encountered: