It seems the C2DM is just connected to Gmail accounts, and so it cannot be used by people who doesn't have it among the accounts on the phone.

Have you found a solution to bypass this limitation (I dunno, maybe having a batch of ready gmail accounts to offer to the user that is installing the c2dm-app) ?

Thanks.

link|improve this question

25% accept rate
feedback

2 Answers

I don't think the user has to have an Gmail account, but he needs an Google Account as the push notification mechanism only works with phones which have installed the Android Market app and registered their Google account to it.

There are some other third party solutions. E.g. Urban Airship.

link|improve this answer
And what if he doesn't have a Google account? Have you ever experienced UA? what are pros and cons? Thanks! – psk Feb 7 at 23:29
Sorry, I haven't worked with UA yet, I just read about it. As far as I know the way C2DM works is that the Android Market app handles an open connection to some Google servers which allows the server to actively send (push) messages to the client. If the user doesn't have a Google account then he cannot use the Android Market app and therefore cannot receive push notifications via C2DM. To use UA you need to integrate the UA library into your app. It contains a service which will handle the receiving of push notifications. I think it also works by keeping a connection to the UA server open. – Flo Feb 8 at 9:04
I read somewhere UA needs to work with Urban Mail app. Give a look at blog.boxedice.com/2010/10/07/… – psk Feb 8 at 18:10
feedback

The C2DM is an interface for the Google service that push the mail, calendar and other google stuff because of that the mobile device needs a gmail (gmail or google account).

Urban Airship abstracts your server-side if you are doing push to diferent devices (mostly android and iOs) so I don't think it's a solution neither.

The only way to make this is create your own service that receive the push in background, maybe using xmpp (asmack) or comet systems.

link|improve this answer
thank, I will give a look to UA (but it seems that you have to install AirMail app onto their device, so it's not such a good solution in my case) and XMPP protocol..but still I hope to find a solution to my problem.. – psk Feb 7 at 23:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.