I was following the video for the WWDC 2019 What's new in Universal Links
we want to add a #no_universal_link to some URL to avoid open on the application this is or current App associated domain file
{
"applinks": {
"apps": [],
"details": [
{
"appID": "XX00XXXX00.com.mydomain.myapp",
"paths": [
"NOT /page2/*",
"*"
],
"components": [
{
"#": "no_universal_link",
"exclude": true
}
]
}
]
}
}
Currently the path
https://www.myfakedomain.com/page2 is open the browser (which is correct)
an we have this others
https://www.myfakedomain.com/page1 (Should open the app)
https://www.myfakedomain.net/page1#no_universal_link (Should open the browser)
After uploading the JSON to the server all the universal links stop working
Any insight of what we are doing wrong would be great