2

App is already published on playstore, can anyone explain the proper way or channel to create and send notification to the end user? Where i can also get the info regarding how much device has received the notification and how much user have clicked on the notification and checked it?

sam
  • 128
  • 9

1 Answers1

2

Implement GCM(Google Cloud Messaging) in your app and end users should install your updated app (with GCM)

“Google Cloud Messaging for Android (GCM) is a service that helps developers send data from servers to their Android applications on Android devices”. Using this service you can send data to your application whenever new data is available instead of making requests to server in timely fashion. Integrating GCM in your android application enhances user experience and saves lot of battery power. --https://developers.google.com/cloud-messaging/

GCM tutorial available in this link.

Happy coding :)

Aditya Vyas-Lakhan
  • 13,409
  • 16
  • 61
  • 96
Venkatesh Selvam
  • 1,382
  • 2
  • 15
  • 28