最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React Native Expo - Open my app from android browser when clicking a link - Stack Overflow

programmeradmin2浏览0评论

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 badges
Add a ment  | 

1 Answer 1

Reset to default 9

It 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

发布评论

评论列表(0)

  1. 暂无评论