I have server which includes a database of usernames. I also have an Android app in which users will register themselves a username with the server database, and also register the device with the GCM part of the server.
I am currently using the GCM demo in my server code, and it will multicast a push notification to every registered device. However, I would like it so that push notifications are sent to certain users, not every registered GCM device.
My first idea was to associate each user in the database with their GCM regID. Will this work? I have read things about the regID changing or having duplicates, which makes it sound a somewhat unstable option for this purpose.
Any ideas on how I could achieve sending messages to certain devices would be appreciated.