We have an app utilizing Branch.io universal links. Following the documentation on: https://help.branch.io/developers-hub/docs/react-native#read-deep-link
On the react-native app you setup a subscriber to receive deep and universal links in the javascript runtime.
Using the latest react-navigation
from here: https://reactnavigation.org/docs/deep-linking
React Navigation would like to natively handle deep links. React Navigation does not appear to expose a good way to manually launch a link.
How can I utilize these two services together? Taking a deep link and decomposing it into a routable deep link is proving challenging. Our app has nested routers and redoing the translation from path to screens and parameters is something I don't want to do. Has anyone done this recently? Thanks.