Perhaps autoupdating in Android without using the Android market?

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

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

+6
source share
3 answers

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

+9
source

If you do not want to support your own update server, you can try the following: auto-update-apk.com

The Android client is open source in the Apache 2.0 license , so you can see how it works and make any changes, if necessary, before including it in your own project or using it as a starting point for your project.

+6
source

Yes, you can use your own web service to check for updates and open a link to a new apk in a browser. After downloading, the user can install the new version.

-1
source

Source: https://habr.com/ru/post/911962/


All Articles