Skip to content Skip to sidebar Skip to footer

Installing A List Of Apk Automatically And Programmatically

I have a list of APK and it should be installed automatically. here's my current situation. first APK appears, Install or Cancel user clicks install a windows appears and will ask

Solution 1:

I think that it is not possible... You can only launch an Intent to install an apk but you can't be sure if the apk is installed (If he comes back as if he clicks on open after installation, he doesn't come back).


But, in your Activity, the onResume method is called when the user comes back to your application.

You can at this moment check if the 1st apk is installed and launch the 2nd apk installation.

Post a Comment for "Installing A List Of Apk Automatically And Programmatically"