ksh
ksh

Reputation: 141

Integrate two android apps into one

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?

Upvotes: 0

Views: 3237

Answers (2)

subha
subha

Reputation: 21

Intent intent = new Intent(currentActivity.this,nextActivity.class);

this.finish();

startActivity(intent);

Upvotes: 1

paulsm4
paulsm4

Reputation: 121849

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:

Upvotes: 1

Related Questions