Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force app update through market, as if user clicks "Update" [closed]

I would like to know, if there is some kind of "Intent" or something, to force the market to update a user-installed app programmatically. Personally, I assume this is a security risk, so I would guess there is no way, but maybe someone knows a workaround.

like image 541
Kirill Rakhman Avatar asked Oct 29 '11 11:10

Kirill Rakhman


People also ask

When do you want to force an update of your app?

From a developer's point of view, I would like to force an update of my app whenever I think that a clean solution to a problem cannot be achieved by keeping the current version of the app.

What is the difference between an update and force update?

An update is available for download and the user can choose to use the current app or update it from the App Store: An update is available for download. The user has to update the app and can no longer use the currently installed version. We force-update the app: Photo by Free-Photos on Pixabay.

How to force a user to update to the latest version?

The best way to handle the situation you describe is to notify users that a critical security bug fix has been released and that everybody should update the app. Show activity on this post. The only way to force a user to update to the latest version is to use a licensing schema.

Why do I get warnings when I update an app?

The warnings will prevent you from using the application until you update it. This tool will help devs keep their apps safe by ensuring older versions aren’t used if there’s a known problem with that version.


1 Answers

I've had an app, post its version to a server and if didn't match the current version listed on the server, fires an intent that takes the user right to the market - can either allow them to cancel and continue, or stop them from using the app until they upgrade. I think it stopped them by bringing up a webview fullscreen to the market url and they can't hide it to access the app.

like image 120
John Williams Avatar answered Nov 22 '22 07:11

John Williams