I\'m using Firebase console to send notifications to users. However I want to let users disable notifications. How can I disable them?
I am able to handle (and stop)
I had this problem.and solved by use below code:
Enable Firebase Notifications:
FirebaseInstanceId.getInstance().getToken();
Disable Firebase Notifications: deleteInstanceId() is a blocking call. It cannot be called on the main thread.
FirebaseInstanceId.getInstance().deleteInstanceId();