Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to install multiple android applications in one APK file?

Tags:

android

Say I have multiple .apk files. Is it possible to combine all these into one .apk file for the convenience of the end user?

like image 441
user540062 Avatar asked Dec 13 '10 05:12

user540062


1 Answers

You can compile multiple activities into the same apk, and have them show up separately in the home screen launcher. This would make them appear separate to the user, but they'd still formally be part of the same android "application" - they would run under the same user ID and so have access to each other's data, and could only be uninstalled as a group.

like image 193
Chris Stratton Avatar answered Oct 06 '22 01:10

Chris Stratton