Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking to write an app which received pushed alerts from a server. I found a couple of methods to do this.

  1. SMS - Intercept the incoming SMS and initiate a pull from the server
  2. Poll the server periodically

Each has its own limitations. SMS- no guarantee on arrival time. Poll may drain the battery.

Do you have a better suggestion please?. Thanks much.

share|improve this question
You can also watch Google I/O 2010 Presentation about Push Notification developer.android.com/videos/index.html#v=PLM4LajwDVc – vokilam Feb 2 '11 at 8:52

14 Answers

Google's official answer is the Android Cloud to Device Messaging Framework (deprecated) Google Cloud Messaging

It will work on Android >= 2.2 (on phones that have the Market app).

share|improve this answer
it's in beta right now, but you can sign up in hopes of being activated. – brack Oct 6 '10 at 19:08
2  
You can generally get activated very quickly, and it is being used for things like GMail so is know to work in production. Unfortunately their sample code for communicating with the server side aspect of C2DM is lacking. I've written up a tutorial for that aspect here blog.boxedice.com/2010/10/07/… – DavidM Oct 7 '10 at 11:14
3  
@Vinod please accept this as the correct answer, so that it will appear at the top of the results. It's definitely the way to go in the future! – Micah Hainline Jul 8 '11 at 13:57
1  
The problem is that you need a Google account for your users : which is, I think, a constraint. – kaffein Apr 17 '12 at 12:13
19  
Note that Android Cloud to Device Messaging Framework has been deprecated. The new framework is called Google Cloud Messaging and can be found here: developer.android.com/guide/google/gcm/index.html – Ryan Berger Jul 9 '12 at 1:04

(cross-posting from an answer I gave to a similar question - http://stackoverflow.com/questions/1243066/does-android-support-near-real-time-push-notification/ )

I recently started playing with MQTT http://mqtt.org for Android as a way of doing this sort of thing (i.e. push notification that is not SMS but data driven, almost immediate message delivery, not polling, etc.)

I have a blog post with background information on this in case it's helpful

http://dalelane.co.uk/blog/?p=938

(Note: MQTT is an IBM technology, and I should point out that I work for IBM.)

share|improve this answer
Thank you that was very useful – Vinod Oct 17 '09 at 19:46
Hi Dale, I read your blog post about MQTT and it definitely seems to fit the bill for almost instant notification on mobiles. But I haven't been able to find any information about how it actually does it. Does it keep a socket open at all times? How does it notify the server if its ip address has changed? Would appreciate it if you could shed some light on this. Cheers Naren – Naren Nov 5 '09 at 6:14
2  
It does hold a connection open. In a follow-up post (dalelane.co.uk/blog/?p=1009) I did talk more about the implications of holding a connection open - did you see that? If the connection is broken, both the server and client can be notified. Then it's an application layer decision to decide how to respond (e.g. reconnect). There is more information in the docs referred to in the post (e.g. IA92 : www-01.ibm.com/support/docview.wss?rs=171&uid=swg24006006 pdf on that page, and Javadoc in the zip on that page) – dalelane Nov 5 '09 at 16:13
No, I had not come across that post of yours. Answered a lot of my questions. Thank you very much :) – Naren Nov 11 '09 at 1:12
curious on how many clients it can have on mqtt using rsmb ? – mikedroid Aug 17 '11 at 14:38

Android Cloud to Device Messaging Framework

Important: C2DM has been officially deprecated as of June 26, 2012. This means that C2DM has stopped accepting new users and quota requests. No new features will be added to C2DM. However, apps using C2DM will continue to work. Existing C2DM developers are encouraged to migrate to the new version of C2DM, called Google Cloud Messaging for Android (GCM). See the C2DM-to-GCM Migration document for more information. Developers must use GCM for new development.

Kindly check the following link:

http://developer.android.com/guide/google/gcm/index.html

share|improve this answer

There is a new open-source effort to develop a Java library for push notifications on Android based on the Meteor web server. You can check it out at the Deacon Project Blog, where you'll find links to Meteor and the project's GitHub repository. We need developers, so please spread the word!

share|improve this answer

You can use Xtify (http://developer.xtify.com) - they have a push notifications webservice that works with their SDK. it's free and so far, it's worked really well for me.

share|improve this answer
3  
I got a response from their VP saying that there's no plans on ever charging for the push service. It's quite an amazing SDK. – Crowe T. Robot Apr 23 '10 at 16:43

or....

3) Keep a connection to the server, send keep-alives every few minutes, and the server can push messages instantly. This is how Gmail, Google Talk, etc. works.

share|improve this answer
5  
I think this will, sadly, produce a hefty amount of battery drain. IF you take this route, make sure to limit the amount of time you do this. – haseman Sep 8 '09 at 22:36
No, actually, it won't, because idle TCP/IP connections take almost no power on the cell modem. – Isaac Waller Sep 8 '09 at 23:25
Actually, it will take a lot over time, so you are right. Sending keep-alives with long intervals helps a lot too. – Isaac Waller Sep 8 '09 at 23:26
Ah! I'm confused, am I wrong or am I right? ;-) – haseman Sep 11 '09 at 22:11
3  
You're right, it was my mistake. – Isaac Waller Sep 11 '09 at 22:34
show 2 more comments

My understanding/experience with Android Push notification are-

1. C2DM - GCM If your target android platform is 2.2+, then go for it. Just one catch, device user has to be always logged with a Google Account to get the messages.

2. MQTT - Pub/Sub based approach. Needs an active connection from device, may drain battery if not implemented sensibly.

3. also have options like Deacon but may not be good in a long run due to limited community support.

share|improve this answer

I'm afraid you've found both possible methods. Google was, at least initially, going to implement a GChat api you could use for a push/pull implementation. Sadly, that library was cut by Android 1.0.

share|improve this answer
1  
They've promised to bring it back once the security problems get worked out... if that ever happens. – fiXedd Sep 6 '09 at 8:48

I dont know if this is still useful. I achieved something like this with a java library at http://www.pushlets.com/

Althoug doing it in a service won't prevent android from shutting it down an killing the listener thread.

share|improve this answer

I would suggest using both SMS and HTTP. If the user is not signed in send their phone an SMS to notify them there's a message waiting.

That's how this Ericsson Labs service works: https://labs.ericsson.com/apis/mobile-java-push/

If you implement this yourself the tricky part is deleting the incoming SMS without the user seeing it. Or maybe it's ok if they see it in your case.

Looks like this works: Deleting SMS Using BroadCastReceiver - Android

Yes, writing code like this can be dangerous and you can potentially ruin someone's life because your application deleted an SMS it shouldn't have.

share|improve this answer
lol: "Yes, writing code like this can be dangerous and you can potentially ruin someone's life because your application deleted an SMS it shouldn't have." upvote for that. lol. – Kumar Ravi Jan 3 at 13:29

Google C2DM is depreciated now, for that, you have o use the new service GCM (Google Cloud Messaging). For documantation, see http://developer.android.com/guide/google/gcm/gs.html

share|improve this answer

C2DM: your app-users must have the gmail account.

MQTT: when your connection reached to 1024, it will stop work because of it used "select model " of linux.

There is a free push service and api for android, you can try it: http://push-notification.org

share|improve this answer
The website is so long too load ... – j0k Oct 4 '12 at 8:12

You can use Google Cloud Messaging or GCM, it's free and easy to use. Also you can use third party push servers like PushWoosh which gives you more flexibility

share|improve this answer

There's a lot a third party servers like Urban Airship, Xtify, Mainline, ... whiches allow send not only on Android, but also on iOs, Windows Phone ...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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