Firebase on Android - I want to disable firebase notifications on Android client

前端 未结 5 1821
忘掉有多难
忘掉有多难 2020-12-16 13:38

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)

5条回答
  •  被撕碎了的回忆
    2020-12-16 14:29

    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();
    

提交回复
热议问题