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

前端 未结 5 1827
忘掉有多难
忘掉有多难 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:38

    I meet the same question. I use subscribeToTopic API to subscribe the notification.

    FirebaseMessaging.getInstance().subscribeToTopic("APP");
    

    And I find the other API unsubscribeFromTopic to unsubscribe.

    FirebaseMessaging.getInstance().unsubscribeFromTopic("APP");
    

    Maybe it would be useful for APP using topic notification. It would not receive notification in foreground and background.

提交回复
热议问题