开发者

Android: Notify user of a newer version

开发者 https://www.devze.com 2023-02-02 23:59 出处:网络
I am find开发者_运维技巧ing alot of users for some reason are not upgrading my application when new versions come out.

I am find开发者_运维技巧ing alot of users for some reason are not upgrading my application when new versions come out. Is there a way for my application to query the Marketplace application and then notify the user if a newer version is available ?


Personally I don't think it's quite that black and white. Lets say you've made a mistake somewhere in your app. You fix it and deploy to market. But you see from your crash reports that there are old versions out there and same users keep on using this app. If the same user keeps on using the app, wouldn't they rather use a version that does not crash? At some point they uninstall and log their rating as "zero stars, useless had to uninstall" - even though the problem is already fixed.

I agree that it is not a good idea to create duplicate logic that just notifies users about newer versions being available - but sometimes it makes sense to add a little extra notification telling users that updating is for their own good.

One solution, that I just came across today, addressing this issues, is from crash report service Bugsense. It allows to you send a notification to users that a certain error he/she has encountered has been fixed. I think it's just good service and tells users that development has not stopped.


I am finding alot of users for some reason are not upgrading my application when new versions come out.

To echo the comments, users are not compelled to upgrade your app.

Is there a way for my application to query the Marketplace application and then notify the user if a newer version is available ?

No.

Your application can query your own Web server, where you publish version information. However, you need to be a bit careful about this, as there are multiple Market servers, and not all receive updates simultaneously, AFAICT. IOW, I would use this as more of a fall-back mechanism, to perhaps do a one-time "hey, don't forget, there's an update available" notice perhaps a week or two after you publish your update.


The best would be to have a DB field with the current version on your server, and check the app version with the version mentioned in the back-end server every time the app loads.

But as CommonsWare mentioned, it might irritate some users.

Another possibility is to have an Check for Update button as I do inside the app itself.

Hope this helps....

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号