On 18 January 2011 09:16, xeagle <xeagle...@gmail.com> wrote:
> Can current version of Android allow an app to be told when it is
> updated?

Even if it would, older versions wouldn't so it'd better to cope with
this yourself, which is quite trivial. When app is updated all user
settings and data is preserved, so you can store versionCode in app's
preferences and on each launch compare stored value with package
versionCode. If package's is higher is higher, then you are updated.
Update stored versionCode and repeat this each time. This is even
better as you can detect downgrade as well and i.e. reject app launch.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to