What will happen if a users opens https://example.com/profile/123 and apple-app-site-association looks like this:
{
"applinks": {
"apps": [],
"details": {
"9JA89QQLNQ.com.app.one": {
"paths": [
"/profile/*"
]
}
"9JA89QQLNQ.com.app.two": {
"paths": [
"/profile/*"
]
}
}
}
}My guess is that this behavior is undefined, but I haven't had a chance to setup an experiment to see what actually happens. Has anyone tried this?
It would be really nice if details were an array and not a dictionary so that there would be an implicit priority (i.e. the first app that is installed and whose path matches will handle the the universal link).