-3

what is the best way to read a dynamic data changed every minutes and send it to android application to refresh it's page. supposing the android application is published on Google play.

Matthew
  • 74
  • 6
user2541552
  • 24
  • 1
  • 8

1 Answers1

2

Check Google Cloud Messaging:

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

It allows you to send messages from your server to a registered device. Then in your application you just have to listen to GCM messages and refresh the page.

PX Developer
  • 8,065
  • 7
  • 42
  • 66