4

I want know something about push notifications. I am making a android apps and in this apps first user register to this android apps and data store on remote database which store on SQL SERVER and after that he logins. My question is that i want send notification to my android application user. How can i send notification? So, please give me good example or example link.

Thank you in advance.

Shankar Agarwal
  • 34,573
  • 7
  • 66
  • 64
Shivam saxena
  • 151
  • 1
  • 3
  • 8

2 Answers2

3

You can use Google Cloud Messaging. Here is the Android Documentation for this topic. An overview:

Google Cloud Messaging for Android (GCM) is a service that allows you to send data from your server to your users' Android-powered device, and also to receive messages from devices on the same connection. The GCM service handles all aspects of queueing of messages and delivery to the target Android application running on the target device. GCM is completely free no matter how big your messaging needs are, and there are no quotas.

Popa Andrei
  • 2,299
  • 21
  • 25
0

You should be using Google cloud messaging for this need. Cloud messaging is efficient in that it doesn't need any background service running all the time, saves battery and RAM.

Google cloud messaging

cyn0
  • 522
  • 2
  • 7
  • 23