Earlier AASA file was
{
"activitycontinuation": {
"apps": [
"APPID.BUNDLEID",
]
},
"applinks": {
"apps": [],
"details": [{
"appID": "APPID.BUNDLEID",
"paths": ["/join/*"]
}
]
}
}
It was working fine. Later URL change came and now we have /j/ instead of /join/. We changed AASA file to,
{
"activitycontinuation": {
"apps": [
"APPID.BUNDLEID",
]
},
"applinks": {
"apps": [],
"details": [{
"appID": "APPID.BUNDLEID",
"paths": ["/j/*"]
}
]
}
}
Issue is deep linking works with /join/ path only and not with the new path /j/.
关联域的值为 *.domain.co 。我们从设备中删除了该应用程序并重新安装。重新启动设备,但深度链接仍仅适用于旧 URL。如果 AASA 是从缓存中取出的,那么如何清除它?