0
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 是从缓存中取出的,那么如何清除它?

4

1 回答 1

0

When Dev App was installed from the app center, it picked up a newly changed apple-app-site-association file. Which fixed the issue.

于 2020-02-03T06:34:12.030 回答