Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I`m interested in knowing if it is possible to programmatically install a dynamically downloaded apk from a custom Android application.

share|improve this question
I do not know what "dynamic loader, dependent on current user environment" means. The answer supplied by @Lie Ryan shows how you can install an APK downloaded by whatever means you choose. – CommonsWare Jan 5 '11 at 14:23

5 Answers

up vote 51 down vote accepted

You can easily launch a market link or an install prompt:

Intent promptInstall = new Intent(Intent.ACTION_VIEW)
    .setData(Uri.parse("file:///path/to/your.apk"))
    .setType("application/vnd.android.package-archive");
startActivity(promptInstall); 

source

Intent goToMarket = new Intent(Intent.ACTION_VIEW)
    .setData(Uri.parse("market://details?id=com.package.name"));
startActivity(goToMarket);

source

However, you cannot install .apks without user's explicit permission; not unless the device and your program is rooted.

share|improve this answer
9  
Good answer, but don't hardcode /sdcard, since that is wrong on Android 2.2+ and other devices. Use Environment.getExternalStorageDirectory() instead. – CommonsWare Jan 5 '11 at 14:22
@CommonsWare: good idea, I've updated my answer to be more generic – Lie Ryan Jan 5 '11 at 14:37
Do you still need explicit permission to update as well, or can that be automated so that the user doesn't have to do anything, or click any buttons? – cesar Sep 9 '11 at 8:28
@anonymous: IMO, that should be a separate question – Lie Ryan Sep 9 '11 at 20:47
2  
The /asset/ directory only exist in your development machine, when the application is compiled to an APK, the /asset/ directory no longer exists since all the assets are zipped inside the APK. If you wish to install from your /asset/ directory, you'll need to extract that into another folder first. – Lie Ryan Dec 26 '11 at 11:42
show 3 more comments

File file = new File(dir, "App.apk");

Intent intent = new Intent(Intent.ACTION_VIEW);

intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");

startActivity(intent);

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.

share|improve this answer
I can't upvote this answer enough. For some reason, setting the intent data and MIME type separately causes ActivityNotFoundException in API level 17. – Brent M. Spell Apr 2 at 15:38
I just up-voted this too. This form was the only friggin one I could get to work. Still years later.. what's this freakin bug? Hours wasted. I'm using Eclipse(Helios), BTW. – Tam Apr 12 at 2:28

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

Intent newIntent = new Intent();
newIntent.putExtra(PackageUtil.INTENT_ATTR_APPLICATION_INFO, mPkgInfo.applicationInfo);
newIntent.setData(mPackageURI);
newIntent.setClass(this, InstallAppProgress.class);
String installerPackageName = getIntent().getStringExtra(Intent.EXTRA_INSTALLER_PACKAGE_NAME);
if (installerPackageName != null) {
   newIntent.putExtra(Intent.EXTRA_INSTALLER_PACKAGE_NAME, installerPackageName);
}
startActivity(newIntent);
share|improve this answer

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.

market://details?id=package.name

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.

share|improve this answer
As I see, this solution is closest to truth :). But it not appropriate for my case. I need dynamic loader, dependent on current user environment, and going to market - not a good solution. But anyway, thank you. – Alkersan Jan 5 '11 at 13:35

I tried

Intent goToMarket = new Intent(Intent.ACTION_VIEW)
.setData(Uri.parse("market://details?id=com.package.name"));
startActivity(goToMarket);

But I got item not found (I used my correct package name com.buisinesscard.msrtech) business >is misspelled in the app hence it is misspelled here.

share|improve this answer
-1 Should be a comment, not an answer – Lennart Rolland Apr 18 at 19:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.