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

前端 未结 2 1568
深忆病人
深忆病人 2020-12-18 04:29

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

相关标签:
2条回答
  • 2020-12-18 04:46

    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.

    0 讨论(0)
  • 2020-12-18 04:50

    You have to include either package or activities into the single project and these activities must be connected with each other in some way as there would be only one main activity defined in manifest file. So, it must be in the sequence in which you want to show. That's it and otherwise i don't think it gets happen through any other way ........... :)

    0 讨论(0)
提交回复
热议问题