I want to implement a link on my website that opens my Android App when clicked in the browser from the phone.
I can send them to Google Play from the app with
Linking.openURL("market://details?id=.myapp.android")
and from my website I can send them to the same page with a link as .myapp.android
But I want it to open the app itself if is already installed. Is this possible? If so, how?
EDIT
Expo Linking says all I have to do is add
{
"expo": {
"scheme": "myapp"
}
}
to my app.json
and then enter the scheme value in my browser
However, I tried this and then entered
myapp://
in my browser, but it just sent me to a google seach with this as keywords.
I want to implement a link on my website that opens my Android App when clicked in the browser from the phone.
I can send them to Google Play from the app with
Linking.openURL("market://details?id=.myapp.android")
and from my website I can send them to the same page with a link as https://play.google./store/apps/details?id=.myapp.android
But I want it to open the app itself if is already installed. Is this possible? If so, how?
EDIT
Expo Linking says all I have to do is add
{
"expo": {
"scheme": "myapp"
}
}
to my app.json
and then enter the scheme value in my browser
However, I tried this and then entered
myapp://
in my browser, but it just sent me to a google seach with this as keywords.
Share Improve this question edited Mar 2, 2018 at 12:20 David Schumann 14.8k13 gold badges83 silver badges105 bronze badges asked Mar 2, 2018 at 8:14 Simon AnderssonSimon Andersson 7912 gold badges9 silver badges32 bronze badges1 Answer
Reset to default 9It now works.
When I enter myapp:// in the chrome or samsung browser in my phone, it sent me to a google search. However, i added an
<a href="myapp://">open app</a>
it worked flawlessly.
Note that you also have to add
{
"expo": {
"scheme": "myapp"
}
}
to your app.json
If your app is still in development in the expo client, you should use a link such as
exp://76-6zc.myexpouser.my-app-name.exp.direct:80
this is the link you will see in the CMD or terminal when you run exp start mand. Read more here at the docs