Reputation: 141
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
Reputation: 21
Intent intent = new Intent(currentActivity.this,nextActivity.class);
this.finish();
startActivity(intent);
Upvotes: 1
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:
How do I programmatically launch a specific application in Android?
Open another one application from our application?
Intent intent = new Intent("com.twidroid.SendTweet");
Upvotes: 1