Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 option available to send update notifications to users when I update my application to Android Market?

like image 509
Khawar Raza Avatar asked Apr 12 '12 07:04

Khawar Raza


1 Answers

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.

like image 125
Femi Avatar answered Nov 04 '22 08:11

Femi