user1285293
user1285293

Reputation: 108

Notify User when a update is available for the installed app

I want to notify user in an alert dialog that if my app has an update in the play store when the app is launched by user.

Is there any service to call and get the updates from play store of a particular app?

Upvotes: 0

Views: 152

Answers (2)

Lazy Ninja
Lazy Ninja

Reputation: 22527

One easy way to do it:
1. Build a webservice and have your version number in a database.
2. On application start up check your database if version is updated.
3. If updated, do show a notify dialog.

Upvotes: 1

Raghav Sood
Raghav Sood

Reputation: 82533

I wrote a library that provides this functionality. You'll need your own server to host the version of code file it needs, but it is very easy to use. You can find it here, along with documentation.

Upvotes: 1

Related Questions