Check app version on Google play [closed]

-2

Is there a Web Service that returns the version of my application? Because for example I have version 1.2 (most current) and when the user opens and for example is version 1.1 do not let him run the application while not updating. I could make a Api of mine that would return the version and every time I updated I would have to go to Api and change as well. Thank you in advance

    
asked by anonymous 15.08.2018 / 18:21

1 answer

2

The most practical way is to create an API that directs you to the latest version of your app, within the app you check if the api response is less than or equal to the current version, thus blocking the user from continuing on app (you can direct it to your app's in-store link for it to update).

    
15.08.2018 / 19:36