Hello, I'm using the deep link trick to navigate to a composable from a notification, and there's an issue I'm having that I didn't have when I was using separate activities and pendingintents without deeplinks:
The state of the previous destination is always lost on navigating from the link, the entire activity being destroyed, even after navigating multiple times from the very same deep link uri.
I'd like to not have that useless recreation and state loss happen when the deep link points to the destination already on top. Is that possible at the moment, or shall I file a feature request?
Note that I specified
android:launchMode="singleTop"
in the
AndroidManifest.xml
for the host Activity.