I've read https://inthecheesefactory.com/blog/understand-android-activity-launchmode/en but various issues stop me from using non-default launch modes.
I have a notification with a pending intent.
I want this intent to not launch an activity, if the app already has a task. Instead when the user clicks on the notification I want the already running task to be brought on screen, without closing any of the task's activities. None of the app's activities should be closed or reordered when the task is brought to the front.
How can I achieve this?