0

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?

Renjith
  • 5,783
  • 9
  • 31
  • 42
ksh
  • 141
  • 1
  • 3
  • 16
  • 1
    Possible duplicated : [link](http://stackoverflow.com/q/2923265/1050058), [link](http://stackoverflow.com/q/4644666/1050058), [link](http://stackoverflow.com/q/3872063/1050058) – Trung Nguyen Oct 05 '12 at 01:29

2 Answers2

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:

Community
  • 1
  • 1
paulsm4
  • 114,292
  • 17
  • 138
  • 190
  • 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
1
Intent intent = new Intent(currentActivity.this,nextActivity.class);

this.finish();

startActivity(intent);
Ankur
  • 5,086
  • 19
  • 37
  • 62
subha
  • 21
  • 1