I have been trying to use the Intent.FLAG_ACTIVITY_NEW_TASK
and Intent.FLAG_ACTIVITY_CLEAR_TASK
flags.
In Android 10 I had no problem but when I use them in Android 11 it doesn't work as expected.
code:
val intent = Intent(activity, VideoActivity::class.java).apply {
putExtra(EPISODE_ITEM_EXTRA, episodeItem)
putExtra(ANALYTICS_TAG_EXTRA, analyticsTag)
flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TASK
}
activity.startActivity(intent)