Exclude or allow only certain urls using assetlinks.json
18:12 27 Jul 2021

Hello Everybody I am currently working with assetlinks.json trying to exclude urls containing the "/adm/" directory, in IOS I can do this defining into my https://mysite/.well-known/apple-app-site-association file this:

"NOT /adm/*"

example:

{
    "activitycontinuation": {
        "apps": [
            "M123DUAQ55.com.totota.rappaporte",
            "M123DUAQ55.com.totota.revisitedoit",
            "M123DUAQ55.com.totota.applictriep"
        ]
    },
    "applinks": {
        "apps": [],
        "details": [{
            "appID": "M123DUAQ55.com.totota.rappaporte",
            "paths": [
                "NOT /blahblah/hack/*",
                "NOT /adm/*",
                "/?????c/*",
                "/index.asp?*",
                "/*/soruce*",
                "/*/video*",
                "/*/operat*"
            ]
        }]
    }
}

but now I am trying to achieve the same in Android using my assetlinks.json file

https://mysite/.well-known/apple-app-site-association/assetlinks.json

There´s a way to exclude certain urls using the assetlinks.json file?

android ios android-manifest deep-linking android-deep-link