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
- Where do I configure
myapp
value? - What should I set the path value? i.e. should 'path/into/app' correlate to a screen or something?
- If I am running the app in expo client on my phone, will the link that is generated from this work?