Deep linking using react native expo?

Aishwarya picture Aishwarya · Jan 8, 2018 · Viewed 9.7k times · Source

How to get deep linking url using react native expo? I tried as per Expo documentation https://docs.expo.io/versions/latest/guides/linking.html#handling-urls-in-your-app using scheme but it is not working for android.

app.json =>

{ "expo": { "scheme": "myapp" } } Thanks!

Answer

Guillaume Piedigrossi picture Guillaume Piedigrossi · Sep 28, 2018

It works if you click on a html link like :

<a href="myapp://">Link to your app</a>

Indeed in the production environnement (not in the dev one) your user click on a link on the Internet. So no problems !

You need also to add this to your app.json

{ "expo": { "scheme": "myapp" } }