Emir Kuljanin
Emir Kuljanin

Reputation: 3911

How do I send data to an android app from Google App Engine?

As I understand it, there are two ways to send data from GAE to my app:

  1. The app does a request and the server sends the data as a response.
  2. The server sends the data directly to the app without the app doing a request.

I know how to send data with (1) but how do I send data with (2)?

Upvotes: 0

Views: 97

Answers (1)

Kamal
Kamal

Reputation: 5522

It seems you are looking for Google Cloud messaging which helps "Push"ing the messages from your server to your app (via GCM Service)

Read for details

http://developer.android.com/guide/google/gcm/index.html

Upvotes: 3

Related Questions