This question is related to this one. I have two Android projects inside Eclipse. One activity of one project calls an activity of the other project. This results in two independent applications being deployed on Android phone.
Is there any way to merge at build time (inside or outside Eclipse) both applications in only one so only an APK is generated?
You can declare one of the projects as a library and include it’s activities in the other. Eclipse will take care of merging the code, resources, and apk’s. See this for more details.