I'm searching for a way to program my application to install silently an apk file. I'm aware about the possibility to launch code looks something like this:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
startActivity(intent);   

but this code raising before the installation starts a dialog with the apk's require permissions and needs the user to authorization to start the installation.

Is there any way to skip this dialog? Is there any other way to install application on run-time from my code that don't requires the user interaction?

link|improve this question

I want to know more about silent uninstall also. – Padma Kumar Nov 10 '11 at 10:07
feedback

1 Answer

up vote 7 down vote accepted

No. And that's a good thing, this would be an (other) open door to malware and unwanted installs. Why do you want to do that, if you mind me asking? What's wrong with letting users know that you want to install something on their device?

Also, some details here: Silent installation on Android devices

And finally, this might be possible for rooted devices: if you write your own installer, you can bypass completely the built-in installer, and with root privilege, you can basically do what you want. But I still think that would be a serious breach of security.

link|improve this answer
actually I need it because I'm developing an application that needs to update itself automatically without user interaction. – Tal Kanel Nov 10 '11 at 10:13
Ah, so that might be possible, if it's the same application... I'll do more research on this, I'm interested... – Guillaume Nov 10 '11 at 10:19
Push the update through the Market ! And when an update is available implement some logic to tell the user to open the Market and update your app . – moujib Nov 10 '11 at 10:25
@moujib: agreed, that would be the preferred, documented, secured way, and consistent with the android ecosystem. Still, it's an interesting theoretical question. – Guillaume Nov 10 '11 at 10:27
@moujib: thank's, I'll be glad if you can be more specific about how can I "listen" from my application to updates, and if you have any idea what kind of logic will do the silent installation process I'm looking for – Tal Kanel Nov 10 '11 at 11:03
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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