Hi guys! I've been thinking and searching about this and what is the best way to implement deep linking in react-native . I've been able to implement deep linking on android and ios but on android, I only know adb commands to test it.
And also when I pass the custom scheme,
<a href="example://hello/">Example</a>
it is not showing as a link. Should I use an api to handle the deep linking?
Adam Bene
Founder & CTO @ Bene Studio | Join us!
You have to implement natively both on iOS and Android. After that you can handle the event when your app is opened through a deep link: facebook.github.io/react-native/docs/linking.html
Have a look at branch.io
It can help you to avoid the implementation and testing of the corner cases and can manage marketing campaigns as well.