2

How do I get published apps version number from Google Play store and Apple App Store with App ID?

Is there any Rest API to provide apps version on stores?.

Diamond
  • 7,428
  • 22
  • 37
user2243420
  • 425
  • 2
  • 12

1 Answers1

0

You can't get the store version but your own version, the version number you put in before submitting the app to stores.

Use Display.getInstance().getProperty("AppVersion", "1.0")

To change your version number, right-click the app and select properties then change the Version number as necessary. The version you put in will be returned whenever you call the above line.

Diamond
  • 7,428
  • 22
  • 37
  • Did you understand my question??. We looking to get Stores version number but you provide the code to get local app version. Your answer not match anywhere else. Do you have any solution for this or not?. – user2243420 Oct 21 '16 at 05:58