I am trying to add a push notification using Google Cloud Messaging to my Android app. I don’t need anything, I just want to notify all users about the application when certain events occur.
I do not need to notify individual users, I always want to send a notification to each user. This is an internal application with a very limited number of users; it is not publicly distributed.
Now, as far as I understand the documentation, I need a registration identifier for each notification I want to send. I really do not want to track them, because I do not need to identify individual devices.
- Can I transfer only to all devices without using registration identifiers?
- If not, how can I get the registration IDs of all registered devices? Do I have to track them manually (out of touch with GCM)?
source
share