I have a website which supports Push-notifications, but what i must do to receive thhis notifications in my app?
-
repeat: http://stackoverflow.com/questions/1378671/push-notifications-in-android-platform - Please search before asking. – FoamyGuy May 11 '12 at 16:47
-
[**Here**](http://stackoverflow.com/questions/1378671/push-notifications-in-android-platform/20279735#20279735) I have posted solution, For Push Notification Implementation,May help you. – swiftBoy Nov 29 '13 at 06:41
3 Answers
You could use Googles Android Cloud to Device Messaging. This also C2DM called funcionality enables you to push short messages to Android Devices. These short messages typically do not contain the actual data but only a code for "there is something available". In a next step, your application pulls the actual data from your server.
You can find a lot of usefull information by searching for c2dm here on StackOverflow. Also see this very usefull tutorial.

- 31,591
- 21
- 89
- 127
For implementng Push-notifications in your app you need to use Cloud to Device messaging or short C2DM
here some tutorial for implementing C2DM in Application:

- 132,198
- 53
- 198
- 213
For Push Notifications You need a sever side, that will manage your push subscriptions and send pushes to your user base.
Look at Simple guide how to integrate Android Push Notifications, it's easy to integrate Push Notifications into your app using this guide, just add some lines of code.

- 18,156
- 10
- 49
- 70