rambo
rambo

Reputation: 61

Why does iOS Universal link stopped working in 12.2

Universal link was working fine till iOS 12.1. It has stopped working in iOS 12.2. I was using XCode 10.1 swift 4, to debug code in 12.2 updated my xcode to 10.2 , swift 4.

I have checked the apple-app-site-association which is fine. Application is downloading it perfectly. Path, activitycontinuation, details looks fine. Associated domains are present in entitlements files. This code works/setup fine when running < 12.2.


{
    "activitycontinuation": {
        "apps": [
            “teamID.bundleidentifier”
        ]
    },
    "applinks": {
        "apps": [],
        "details": [
            {
                "appID": “teamID.bundleidentifier”,
                "paths": [ "/validate", "/redirect", "NOT /*" ]
            }
        ]
    }
}

Apple has added some changes related to security, is this the reason of not working.

Upvotes: 2

Views: 1166

Answers (2)

rambo
rambo

Reputation: 61

Apple has asked me to create a bug for them. They think it’s most likely a bug I am running up against.

Upvotes: 2

MSC
MSC

Reputation: 482

Can you try by replacing teamID with the app prefix in the appID under details of apple-app-site-association file. also keep the apps section empty.

Upvotes: 0

Related Questions