Hello,
I am developing an App Clip for my app. Until now we supported two invocations,
domain/category/some_id and domain/practice/some_id.
Now i want to add another deep link to my app(only to app) that looks like domain/tip/some_id. When tapping on link if my app is not installed the app clip is opened, but it should not, because i have only created invocations only for the first 2 cases.
I have 2 experiences created in appstoreconnect for the links with category and practice.
My AASA file looks like this:
{
"appclips": {
"apps": [
"bundleId.Clip"
]
},
"applinks": {
"apps": [],
"details": [
{
"appID": "bundleId",
"paths": [
"/practice/*",
"/category/*",
"/journey/*",
"/tip/*"
]
}
]
}
}
My question is how can i keep the tip deep link only for the main app. Should i create another domain?
Thanks!