Reputation: 9285
I have a simple expo app that I have just started from expo init
with the minimal template.
I have a website that I want to put a link to my expo app on.
How do I build this link?
Following https://docs.expo.io/versions/latest/workflow/linking/ suggests using
let redirectUrl = Linking.makeUrl('path/into/app', { hello: 'world', goodbye: 'now' });
which would output: myapp:///path/into/app?hello=world&goodbye=now
myapp
value?Upvotes: 1
Views: 3549
Reputation: 21
"expo": {
"scheme": "myapp",
Not sure. I use screen name but it always activate last state (screen) or starts app from scratch, anyway it doesn't throw any error
When running from expo Linking.makeUrl will create valid URL of your app like exp://wg-qka.community.app.exp.direct:80. after you publish or create standalone it will be myapp://
Upvotes: 2