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.
Asked
Active
Viewed 103 times
1 Answers
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
-
the server is an website or what? – user2541552 Jul 16 '13 at 11:34
-
I guessed the dynamic data you want to check is in your own server. Was I wrong? – PX Developer Jul 16 '13 at 11:59