I`m interested in knowing if it is possible to programmatically install a dynamically downloaded apk from a custom Android application.
|
|
You can easily launch a market link or an install prompt:
However, you cannot install .apks without user's explicit permission; not unless the device and your program is rooted. |
|||||||||||||||
|
I had the same problem and after several attempts, it worked out for me this way. I don't know why, but setting data and type separately screwed up my intent. |
|||||
|
|
Well, I digged deeper, and found sources of PackageInstaller application from Android Source. https://github.com/android/platform_packages_apps_packageinstaller From manifest I found that it requre permission And the actual process of installation occurs after confirmation
|
||||
|
|
|
Yes it's possible. But for that you need the phone to install unverified sources. For exemple, slideMe does that. I think the best thing you can do is to check if the application is present and send an intent for the Android Market. you should use something the url scheme for android Market.
I don't know exactly how to start the activity but if you start an activity with that kind of url. It should open the android market and give you the choice to install the apps. |
|||
|
|
|||
|
|