Abhinav
Abhinav

Reputation: 38142

Push notification for Android applications

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

Upvotes: 9

Views: 4498

Answers (4)

Girish Bhutiya
Girish Bhutiya

Reputation: 3127

use this link for learn and source code for push notification in android and build on android 1.6 you can use MQTT library. And for testing push notification in emulator refer this link.

Upvotes: 5

robsf
robsf

Reputation: 1733

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

Upvotes: 9

Related Questions