I have my android app already installed on devices and now I want that if I have released a new version of that app in the play store market then the app automatically detects that there is a new version available and notify the user that they can update the app. How can I do that?
-
do you have a dedicated server for your app ? – Sagar Nayak Mar 25 '16 at 04:55
-
Possible duplicate of [Programmatically check Play Store for app updates](http://stackoverflow.com/questions/25201349/programmatically-check-play-store-for-app-updates) – Mangesh Mar 25 '16 at 05:13
5 Answers
you may create an api with json response to check version and when update available simply redirect to google play store

- 784
- 2
- 10
- 26
You do not have to set this property in the application. You set this property in the Google Play in your application section like this:

- 3,696
- 4
- 28
- 47
The only case where you should be doing this is when your app uses a not packaged service (hosted on a server, in another app, etc).
This service should return an adequate response if the client (your app) is outdated. If you recieve such a response, then you can redirect to the play store.
If you don't use such a service and still want to do this, then check the android market api.
But really, you shouldn't. The Play store already notifes the user if there is an update. No need to do that again, you will only annoy users.

- 7,690
- 3
- 24
- 62
when you upload your application's update version on google play store . Google play store automatically send notification to users for update version of your application.So no need to send user a custom notification for update version. So only set this functionality on your play store account

- 1,742
- 15
- 22