How to install multiple internal applications

I am developing a website for deploying Android applications. Users can select multiple Android applications from the list of Android applications from the website, and when they click the download button, all applications must be installed on the phone one by one. Check all applications at once - click "Download" - then all applications will be downloaded and installed automatically. How is this possible?

+3
source share
2 answers

Without your own application, there is no way to do this programmatically.

An example of this in a native application would be how Amazon does this in its AppStore. I believe that they use the Android Cloud to Device Messaging Framework to send data to the application in order to tell it to install apk. The application then downloads apk from the server somewhere and installs it. This will require permission to install in your manifest.

+3
source

This is not possible in the Android stock. You can download all files, it is up to the user to install them manually.

+1
source

All Articles