Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to unregister phone from firebase cloud messaging

Hello I am developing an test app using FCM I go through docs and also search on net but unable to find the option that how can a device token can be deleted from firebase database.

I have tried Firebase.getInstanceId.deleteToken but It didn't help

like image 596
Pritish Joshi Avatar asked Jun 16 '16 18:06

Pritish Joshi


1 Answers

Try this one

FirebaseInstanceId.getInstance().deleteInstanceId();
like image 144
deviant Avatar answered Oct 06 '22 01:10

deviant