0

I want to check programmatically if my app's version is the latest existing. With iOS, I would use this HTTP request :

http://itunes.apple.com/fr/lookup?bundleId=com.EC.EmploiCollectivites

Then, parse the JSON stream to get the version.

How can I do this (and is there a way) for Android ? Thanks for your answers.

Rob
  • 15,732
  • 22
  • 69
  • 107

1 Answers1

1

How can I do this (and is there a way) for Android ?

Store some JSON on your own server with the latest version information, then download that JSON.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491