Android Question Send FCM to All

Hamied Abou Hulaikah

Well-Known Member
Licensed User
Longtime User
Hello
How to send FCM notification message to all devices without subscription? Like FCM console.

In the forum, there is an @Erel Example for sending to topics only.
 

DonManfred

Expert
Licensed User
Longtime User
You are project admin; use the tokens you remembered (hopefully you did when a user is getting the token in your app) in your database and send a push to all token in your database.
 
Upvote 0

Hamied Abou Hulaikah

Well-Known Member
Licensed User
Longtime User
You are project admin; use the tokens you remembered (hopefully you did when a user is getting the token in your app) in your database and send a push to all token in your database
Not practicable method .. We need one send to all method as fcm console does
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
They do nothing other than to iterate through all users from your project and use their token to send a push to.
This is what you need to do. There is no method.
Away from that; when your users are using your app they are registering to a TOPIC (did you removed that line?). You can send to this TOPIC as all your app users did register to this topic.
 
Last edited:
Upvote 0
Top