Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deep linking using react native expo?

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!

like image 972
Aishwarya Avatar asked Jun 14 '26 14:06

Aishwarya


1 Answers

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" } } 
like image 158
Guillaume Piedigrossi Avatar answered Jun 18 '26 00:06

Guillaume Piedigrossi