I have added universal links into my iOS application
messages http://somesite.com/message/list/ >> opens the app to messages
review http://somesite.com/review/add/ >> opens the app to review
place http://somesite.com/place/add/ >> opens the app to place
photo http://somesite.com/photo/add/ >> opens the app to photo
all working as expected, my question is : how to exclude paths or urls, in a way that it never even opens the app?
for example
somepage http://somesite.com/somepagelink >> SHOULDN'T OPEN APP, it must show up in the browser.
the apple app site association file
{
"applinks":
{
"details": [
{
"paths": ["*", "NOT /somepagelink/*"],
"appID": "ID1.myApp"
},
{
"paths": ["*", "NOT /somepagelink/*"],
"appID": "ID2.myApp"
}],
"apps": []
},
"activitycontinuation":
{
"apps": ["ID1.myApp","ID2.myApp"]
}
}
is this the correct way to exclude a path?
"NOT /somepagelink/*"