Universal Links not opening app on phone running iOS 14 Beta

Our old app (built with Xcode 11, running on iOS 13) has working universal links, that open our web links in our app.

When we run the app on iOS 14 universal links to not trigger our app.

Background:

We have added a second site association file to our site at the following location:
Code Block
https://www.example.com/.well-known/apple-app-site-association

Our site association file looks like this:
Code Block
{
"applinks": {
"apps": [],
"details": [
{
"appID": "id.example.com.appName",
"paths": [
"/m/sprockets/*",
"/sprockets/*"
],
"appIDs": [
"id.example.com.appName"
],
"components": [
{
"/": "/m/sprockets/*"
},
{
"/": "/sprockets/*"
}
]
},
{
"appID": "id2.example.com.appName2",
"paths": [
"/m/bolts/*",
"/bolts/*"
],
"appIDs": [
"id2.example.com.appName2"
],
"components": [
{
"/": "/m/bolts/*"
},
{
"/": "/bolts/*"
}
]
},
{
"appID": "id3.example.com.appName3",
"paths": [
"/lights/*"
],
"appIDs": [
"id3.example.com.appName3"
],
"components": [
{
"/": "/lights/*"
}
]
}
]
}
}


Any idea how to troubleshoot this? Anyone else experiencing this?


Answered by Shreve.La in 632501022
resolved. Apple's crawler was blocked when trying to access the apple-site-association-file
Accepted Answer
resolved. Apple's crawler was blocked when trying to access the apple-site-association-file
Hello Shreve.La, same trouble here, what did you do to fix the issue ?

Thanks,
Keyne
Hello @Shreve.La,

Could you please share some info on Apple crawler? What are its characteristics, like User-Agent or whatever? I am facing the very same issue on my project and would appreciate any info you might share.

{ “applinks”: { “apps”: [], “details”: [ { “appID”: “PL7ZT8D4QJ.universalLinkTE.UniversalLinkTE”, “paths”: [“/login/*”], } ] } }

this is my aasp file can anyone suggest what is wrong in this

Universal Links not opening app on phone running iOS 14 Beta
 
 
Q