We are trying to generate a link that, when clicked in a browser, opens our App if it’s installed otherwise go to the google play store for installation in react-native
Question posted in React native
The official React Native documentation can be found here.
The official React Native documentation can be found here.
2
Answers
I solved this problem by using firebase dynamic links for android and IOS both. for IOS-
for Android-
There is something called Universal Link that might help you.
But the universal link will open your website if the app is not installed in the user’s phone. Then you might have a web page with links for Google Play/ App Store
To do exactly what you want, you need to check some 3rd party services such as: branch.io or adjust.com
I hope this answer help you