Zamel
Zamel

Reputation: 712

How can an app enable "Allow Automatic Updating" in the Android market

I noticed that some apps like Google Maps, Facebook for Android etc. (all preloaded BTW), have their "Allow Automatic Updates" check box checked without me doing so.

Is it possible for preloaded apps only?

How can I achieve that with my app?

Upvotes: 6

Views: 1496

Answers (3)

Dimitri Dewaele
Dimitri Dewaele

Reputation: 10659

Users can opt to allow an app to be auto-updated by the Market. However, if the permissions for the app have changed, it does not work. The user must manually update and agree to the new permissions. After that, it will continue to auto-update.

That's pretty much it.

Upvotes: 0

Dimitris Makris
Dimitris Makris

Reputation: 5183

I found this post from google groups that may help you:

http://groups.google.com/group/android-developers/browse_thread/thread/e5e77d5d8f05f8d5?pli=1

It explains how this feature works. Hope this helps!

Upvotes: 1

Rajath
Rajath

Reputation: 11926

The user has to explicitly check this option. I don't think there is any API to do this from the app.

You could, after asking the user if he wants to (say, in a dialog box), take him to your app's market page, so that he can check it.

Upvotes: 1

Related Questions