I have two android applications. I want to integrate them into one but I don't have source code for these two apps. I just have apk files. So is there any way to do it? For the details, I want to create an app which contains two button, the first button will fire the first app and the second button will fire the second app. So I just need to embed these two apps in my main app. Can it be done without source codes?
Asked
Active
Viewed 3,160 times
2 Answers
1
Q: I have two android applications. I don't have source code for these two apps. I just have apk files. Can I integrate them into one app?
A: No.
But you can write an app that will launch either app.
For example:
How do I programmatically launch a specific application in Android?
Open another one application from our application?
Intent intent = new Intent("com.twidroid.SendTweet");
-
In that case, users need to install three apps in order to call these two apps from my main app. Am I right? – ksh Sep 12 '12 at 05:45