You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let say there are multiple external links that resolve to the same app link.
Ex: www.foo.com/home -> app://home www.foo.com/dashboard -> app://home
Yes, we can list them all in @DeepLink annotation but in case we have some Uri pattern matching logic in the activity, we'd need to parse all of them. It would be much easier to just rethrow the app link, so it becomes a single source of truth, without www.foo.com/home even hitting the activity. Is there elegant way to declare such mapping? So far I can only think of custom handling in DeepLinkActivity.
The text was updated successfully, but these errors were encountered:
Let say there are multiple external links that resolve to the same app link.
Ex:
www.foo.com/home -> app://home
www.foo.com/dashboard -> app://home
Yes, we can list them all in
@DeepLink
annotation but in case we have some Uri pattern matching logic in the activity, we'd need to parse all of them. It would be much easier to just rethrow the app link, so it becomes a single source of truth, withoutwww.foo.com/home
even hitting the activity. Is there elegant way to declare such mapping? So far I can only think of custom handling inDeepLinkActivity
.The text was updated successfully, but these errors were encountered: