Trying to untangle compose navigation deep links; does anyone have any insight on where deep link handling is actually added to the activity (guessing that its
addOnNewIntentListener
, but where is that called by navigation compose?).
a
Albert Chang
08/25/2023, 4:54 AM
Navigation only handles deep link on activity creation. See the doc.
z
Zoltan Demant
08/25/2023, 5:00 AM
So it basically takes the
intent
when activity calls
onCreate
?
When using
standard
launch mode, Navigation automatically handles deep links by calling
handleDeepLink()
to process any explicit or implicit deep links within the
Intent
This is effectively what Im trying to understand the how of.