Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing a non-public Android app, i.e. the app won't be available in the global Android Market. The app will be installed on a limited number of clients, e.g. by using an apk file. What is the best way to enable an auto-update functionality in this app?

I see different potential options (I do not know if those are technically hard or even impossible to implement or if there are any existing functionalities that can be reused):

  • On each launch the app tests if a new version exists (by requesting a server), if so downloads the new apk and replaces itself with the new version.
  • Use (or develop?) a separated app or service that undertakes the update-check and replacement-process.
  • Use (or develop?) a private market app which has an auto-update option. This option is similar to the second one, but more generic: The market app would be connected to a repository, i.e. it would handle an arbitrary number of (private) apps.

I would prefer option one since the auto-update functionality is included in the app which needs less development efforts.

share|improve this question
and replaces itself with the new version That's going to require root privileges. As will probably any solution for this. I believe in the default android firmware, the user is REQUIRED to interact to install an application. There's no way to mock that without root or a custom firmware. – Falmarri Nov 29 '10 at 22:02
Of course user interaction to approve the update is going to be required - it is for everything on the market too. If you really want to compel them, the old version could refuse to work after it's detected that a new one is available. – Chris Stratton Nov 30 '10 at 5:35
Why is this closed? This is a fantastic question, with some fantastic answers. Honestly Google should provide the functionality to auto update an app from a privately hosted APK, so everyone doesn't need reinvent the wheel with custom updaters. – Jim Apr 11 at 0:51

closed as not constructive by Will Jan 21 at 16:39

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

janjonas, in the company I work we had a similar problem with Windows Mobile 6.x, and we use pretty much the same solution pointed by EboMike:

enter image description here

The main app check if it's updated, against a WebService. It receives the current version & the URL from where download the new version, if necessary. The main app then start the Updater app, passing the URL, and quit.

The Updater do the download of the new program, via HTTP, showing to the user the % downloaded. The user can cancel the download anytime, in a controlled way, and the Updater can registry this cancellation.

Since the new app is downloaded, the Updater run the new app, and quit.

share|improve this answer
Can you please help me with the code? – hemant Oct 29 '12 at 9:31
Sorry hemant, the company's code is protected by intellectual property... But I'm pretty sure you can find free stuff out there. – tcbrazil Oct 29 '12 at 14:28
+1 Nice it clears the mind – Pankaj Kumar Mar 4 at 7:36

I think option one is the least amount of work for you, and actually the cleanest one too since it will go through the proper channel of using Android's built-in package installer which includes user notification and the option for the user to abort the installation if desired.

You already have it all outlined - check for a new version on a server (would be nice to give the user the option to turn that off), and if there is a new version, you could either just link to the URL with the APK (which will, IIRC, use the browser's download manager to download it), or you could download it with your app and then point the intent to your local file. Using the HTTP link is technically less work and cleaner - the more you let the operating system do, the better - unless there's a reason not to.

share|improve this answer
Thanks for your answer. I will try option one: The app downloads an apk file and starts the installation process. As mentioned in the other comments a user interaction is required to confirm the update. This question stackoverflow.com/questions/3938926/… shows how to start the downloaded apk file. – janjonas Dec 8 '10 at 8:57

Not the answer you're looking for? Browse other questions tagged or ask your own question.