Reputation: 271
I am trying to add Universal Linking to app that I am working on. I have all of the proper settings and URLs set up on the dev account. I am using React Native and React native Router flux. The router is set up to be domainname.me/flow/:flow_id.
For the apple JSON file should I have the wild card "*" in paths or should I have the '/flow'
I have to domains under the Associated Domains
applinks:appname.me (domain is .me not .com)
applinks:www.appname.me
I have the apple-app-site-associatifile below.
{
"applinks": {
"apps": [],
"details": [
{
"appID": "<teamID>.me.appname.ios",
"paths": [
"/flow/"
]
}
]
}
}
Upvotes: 0
Views: 1031
Reputation: 271
It was an emulator problem. For some reason Universal Links wouldn't open there, but do on a physical device.
Upvotes: 3