Sugan S
Sugan S

Reputation: 1778

Android Push Notification

I refered link a link to develop Push Notification but while running it show me the UI (main.xml). What should I do to create Push Notification (C2DM server) sample app?

Upvotes: 8

Views: 25497

Answers (4)

Tony O'Hagan
Tony O'Hagan

Reputation: 22682

Here's the documentation for Firebase Cloud Messaging Service that replaces C2DM and GCM: https://firebase.google.com/docs/cloud-messaging/

Upvotes: 12

Ollie C
Ollie C

Reputation: 28509

This is the best C2dM documentation I've seen. It's in the form of a tutorial and it both explains how everything works, and provides sample code.

http://www.vogella.de/articles/AndroidCloudToDeviceMessaging/article.html

GCM is outdated. FCM comes as a replacement for GCM.

https://www.youtube.com/watch?v=uuiuVDb2bug

Upvotes: 11

adimoh
adimoh

Reputation: 728

Free and easy method:

If your target user base is not large(less than a 1000) and you want a free service to start with, then Airbop is the best and most convenient.

Airbop Website It uses Google Cloud Messaging service through its API and is provides a good performance. i have used it for two of my projects and it was easy implementing it. You can easily build your sample app with it.

Services like Parse([Parse website])2 and Urbanship are excellent but paid and provide an entire deployment stack and not just the push notifications thing.

If only push service is your target, Airbop will work fine.

I haven't used Pushwoosh, but is also a great choice. It allows push to 1,000,000 devices.

Upvotes: 0

harsha.kuruwita
harsha.kuruwita

Reputation: 1331

C2DM has been officially deprecated as of June 26, 2012,instead of c2dm you can use android cloud to device management service(GCM)

Upvotes: 10

Related Questions