As far as I know, Google C2DM servers gives notifications from third party server. Is it possible to make Google C2DM servers your host for data. Can one send data from an android application to Google C2DM servers for other users of the same application to receive notification of the data
As far as I know, Google C2DM servers gives notifications from third party server.
Share
Technically, yes (as per Piyush’s answer), but I would strongly not recommend it. Firstly, each instance of your app would have to have access to your private authentication credentials (which are now at risk of being comprimised). Secondly, if you wanted to update these credentials, you would have to update every installation (ie all of your users) simultaneously or there would be communication issues.
Instead, I would advise getting a free “google app engine” account, and doing broadcast comms through that channel (or any other cloud based provider). You’ll be able to keep your keys safe and centrally controlled.