I've had a look at this post but it doesn't address our current issue. We are looking to partner with a given company on a venture and the question is can our apple site association files hold each others team and applications ids but still respond to the same domain? i.e. our server would hold:
{
"applinks": {
"apps": [],
"details": [
{
"appID": "1234ABCDE.com.ourdomain.ourApp",
"paths": ["*"]
},
{
"appID": "D3KQX62K1A.com.theirdomain.theirApp",
"paths": ["*"]
}
]
}
}
This means our app can have applinks:ourdomain.com
in associated domains of our app. Their server would hold:
{
"applinks": {
"apps": [],
"details": [
{
"appID": "1234ABCDE.com.ourdomain.ourApp",
"paths": ["*"]
},
{
"appID": "D3KQX62K1A.com.theirdomain.theirApp",
"paths": ["*"]
}
]
}
}
Then in their associated domains they can have: applinks:ourdomain.com
as well. So that if a user presses a ourdomain.com url and their app is installed it would open their app? I'm looking to see if we can have their app open when one of our URLs are pressed and a user has their app installed. What would happen in the scenario if a user has both our apps installed?