Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Push notification for Android applications

Tags:

android

Do we have any equivalent service of Push Notification (in iPhone) for Android applications?

like image 702
Abhinav Avatar asked Apr 07 '11 05:04

Abhinav


1 Answers

The way to go is using C2dM the official google push api

http://code.google.com/android/c2dm/index.html

instead of building it yourself.

To support older phones and/or if you don't really need real time notification, you can use polling. Check out the BuzzBox SDK as the simplest way of adding a scheduler and notifications to your apps. http://hub.buzzbox.com

like image 83
robsf Avatar answered Oct 02 '22 08:10

robsf