skip to Main Content

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

2

Answers


  1. Chosen as BEST ANSWER

    I solved this problem by using firebase dynamic links for android and IOS both. for IOS-

    https://firebase.google.com/docs/dynamic-links/ios/create

    for Android-

    https://rnfirebase.io/dynamic-links/usage


  2. 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search