1

I have to build an application for push notifications in android.I read from the net tutorials that for push notifications C2DM is required.And for c2dm android market application needs to be installed.Can i plz have guidelines as how to install android market app in my emulator?

user1387035
  • 209
  • 4
  • 9
  • It is not possible to do that legally since the required .apk files are officially unavailable. – zapl May 21 '12 at 08:29

1 Answers1

1

for implementation of push notification you don't really need the market app, take a look at this answer Android C2DM Push Notification

and the tutorial http://blog.mediarain.com/2011/03/simple-google-android-c2dm-tutorial-push-notifications-for-android/

Community
  • 1
  • 1
dinesh sharma
  • 3,312
  • 1
  • 22
  • 32
  • i read the link:-http://www.vogella.com/articles/AndroidCloudToDeviceMessaging/article.html In this 1.3 Requirements it is given that u need to install the market app.I am totally confused.Please guide me – user1387035 May 21 '12 at 08:36
  • Dear its two way process where you have to register your with c2dm that will give you a token that token is sent to your server or back-end and by using that token you can push the message on google cloud from you back-end. and then you will receive that message in your c2dm receiver – dinesh sharma May 21 '12 at 08:41