1

I wanna know can I redirect my application to another application, I am using android studio and i am a biginner, I searched a solution but I did not find. i want to to redirect my application to another which control my ip camera

Yasmine
  • 11
  • 3

1 Answers1

1

For this purpose you should use intents https://developer.android.com/training/basics/intents/sending.html

Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.package.targetapp");
if (launchIntent != null) { 
    startActivity(launchIntent);
}
Vadims Savjolovs
  • 2,618
  • 1
  • 26
  • 51