I’m trying to configure my Apple App Site Association (AASA) file to handle deep links for my app. I want to ensure that the path /bbs/thread/*
is included, and it should override the more general path /bbs/*
. However, it seems that my current configuration is not working as expected. Here is the relevant part of my apple-app-site-association file:
{
"applinks": {
"apps": [],
"details": [
{
"appIDs": [
"XXXXXXX.io.deweb.messageboard.stg"
],
"components": [
{
"/": "/_/*",
"exclude": true
},
{
"/": "/bbs/thread/*"
},
{
"/": "/bbs/*",
"exclude": true
},
{
"/": "/*"
}
]
}
]
}
}
From my understanding, the specific path /bbs/thread/*
should override the more general exclusion of /bbs/*
, but it doesn’t seem to be working. Can someone help me understand why this configuration isn’t behaving as expected and how I can fix it?
Any help would be greatly appreciated!
Or Bachar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.