Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my application I am downloading and saving an apk to the sdk card and then I want to start the installation of the apk. I'm using the following code to attempt this:

Intent intent =new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(file), "application/vnd.android.package-archive");
activity.startActivity(intent);

But when I do this it tells me there is no activity to start the intent. What I am attempting to do is install a new update for the currently running application. How do I start an Intent to run an apk file?

share|improve this question
what is in the value "file" – Aaron Saunders Oct 15 '10 at 2:51
Would be where ever the apk was saved. Eg. /sdcard/test.apk – skorulis Oct 15 '10 at 2:59

1 Answer

up vote 8 down vote accepted
+100

Did you try using Uri.fromFile(new File(filePath)) instead of Uri.parse(file)?

share|improve this answer
Thanks for that, worked perfectly. – skorulis Oct 26 '10 at 22:32

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.