3

I need my deep link activity is launched with flags FLAG_ACTIVITY_NEW_TASK and FLAG_ACTIVITY_CLEAR_TASK on launching from deeplinks.

The idea is to clear all existing activities and start a new one.

Is this possible with android:lauchMode parameter?

Suneesh Ambatt
  • 1,347
  • 1
  • 11
  • 41

1 Answers1

1

Try this

Intent i = new Intent(mContext, MainActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(i);

or

 android:launchMode="singleTask"
Ganesh Pokale
  • 1,538
  • 1
  • 14
  • 28