Hi @denizts,
I'm facing the same problem.
Were you able to get through with the implementation?
Post
Replies
Boosts
Views
Activity
Hi @denizts, I'm facing the same problem. Were you able to get through with the implementation?
Hi @Manikandan, I'm trying to implement safari push using APNS. Can you please help me understand which event receives the silent push message? Should we have a service worker implementation? In any case which event please?
Hi @kolesker, I'm facing the same problem. Were you able to get through with the implementation?
Hi,
Im having a similar issue.
I need my app to open all other links except domain.com. But clicking on domain.com still opens the app though I have added 'excluded': true.
Below is my aasa file
{
"applinks": {
"apps": [],
"details": [
{
"appID": "com.domain",
"paths": ["NOT /"],
"components": [
{
"/": "/",
"exclude": true
},
{
"/": "/biz/*"
},
{
"/": "/offers/deal-detail*",
"?": { "oId": "*" }
},
{
"/": "/review/*"
},
{
"/": "/emailActionHandler*"
}
]
}
]
}
}
I have also tried to verify this with swcutil tool, and it gives the right matches and blocks 'domain.com'. But the actual behavior on an iOS device is not the same.