Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can an Android app install another android app?

I was wondering if it was possible to have an android app which is already installed go and download another app and install it? I figure there could be security problems with this, but is it possible for the Android OS to do this?

like image 839
Anton Avatar asked Jun 22 '10 17:06

Anton


4 Answers

Strictly speaking no, it is not possible: each Android package (.apk) file installed on the device is given its own unique Linux user ID, creating a sandbox for it and preventing it from touching other applications.
If an application would "install" another one, it couldn't give to the target a new user ID. Only the system applet, running at root level, can do that.

What the application can do is to indirectly invoke the package installer with the ACTION_VIEW intent and the application/vnd.android.package-archive MIME type: the system will launch the appropriate "viewer", which of course is the package installer.

Nice link about that topic: http://android.amberfog.com/?p=98

like image 59
lornova Avatar answered Oct 03 '22 03:10

lornova


Yes. This is how the Swype beta works. What you basically do is download the new apk, and use some Intent (not sure which) to launch the Package Installer (and at this point it is a new activity and the user has to agree to install just like downloading from the Market).

like image 44
Robby Pond Avatar answered Oct 03 '22 03:10

Robby Pond


Try this:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(path+"/yourapp.apk")), application/vnd.android.package-archive");
startActivity(intent);
like image 39
DroidlikeCode Avatar answered Oct 03 '22 05:10

DroidlikeCode



If the answer is NO. Then i wonder how facebook installs "Messenger" Application along with the "Facebook for Android" application?

If i'm not wrong, "Messenger" is also a different application from Main Facebook app.

Facebook For Android App will not ask to install Messenger App when we want to chat thru facebook app. It is already installed with facebook.

You can also install/uninstall Messenger application separately.

I may be wrong. I dont have complete information, but looking at the process and on applying little bit of logic i think we can install android application from another application. But how i'm too learning and looking for it .


So how must they have done it? Please correct me if i'm wrong.

like image 26
Vishal Avatar answered Oct 03 '22 05:10

Vishal