Using DeepLinks in Compose leads to inability to navigate backwards
I have a FirebaseMessagingService subclass that receives a notification payload and then creates a push notification with the following PendingIntent:
TaskStackBuilder.create(this).run {
addNextIntentWithParentStack(
Intent(
Intent.ACTION_VIEW,
"eway://traversals_monthly_bill_details".toUri()
)
)
getPendingIntent(2345, PendingIntent.FLAG_UPDATE_CURRENT)
}
Here are the...