Android Application Update Notification
I uploaded my app to android market a month ago. Now I have uploaded its new version. I have old version installed on my device. But I have got NO update notification. Is there any
Solution 1:
Not by default: the market notifications are not something exposed to app developers in any way. If you want to notify your users you'll need to build that into your app: set up a server that exposes an HTTP url that reports the latest version, then use an AlarmManager
to call that URL and see if the version on the device is the same as the latest version. If it isn't pop up a message or notification and send them to the market to upgrade. Same thing described here.
Solution 2:
Try This Library that checks for updates on Google Play, GitHub, Amazon, F-Droid or your own server. This library notifies your apps' updates by showing a Material dialog, Snackbar or notification Check out the wiki.
Post a Comment for "Android Application Update Notification"