6

Possible Duplicate:
Is there a way to automatically update application on Android?

As a property of an application(NOT USING GOOGLE PLAY), an auto-updating possible in android? I mean can a application check and download the new apk file, and install after downloading it?

Community
  • 1
  • 1
guness
  • 6,336
  • 7
  • 59
  • 88

3 Answers3

9

Check out the CWAC-Updater project: https://github.com/commonsguy/cwac-updater

Marc Bernstein
  • 11,423
  • 5
  • 34
  • 32
6

If you don't want to maintain you own update server, you may try this: auto-update-apk.com

Android client is open-source under Apache 2.0 license, so you may see how it works and make any changes, if necessary, before incorporating into your own project or using it as a starting point of your project.

lenik
  • 23,228
  • 4
  • 34
  • 43
  • Love it, and they offer 1GB of monthly bandwidth for free, with a nice web interface to manage your apps. To incorporate in your project, add three permissions in the manifest, copy-paste a Java class and call its constructor. It's that simple! – tiktak Aug 07 '13 at 05:01
-1

Yes, you can use your own webservice for checking updates, and open link to new apk in browser. After downloading user can install new version.

Alex Klimashevsky
  • 2,457
  • 3
  • 26
  • 58