Lucas Pereira
Lucas Pereira

Reputation: 71

Universal Link works only on simulator

Morning everyone! So i just managed to implement universal link to my iOS Project. I'm using App Search Validation Tool to check it's integrity and i'm having this status at Link to Application:

"Action required Could not extract required information for Universal Links. Learn how to implement the recommended Universal Links."

https://i.sstatic.net/yAXIA.png

Then i go to this link to check if my apple-app-site-association JSON format is correct. It seems it is, here is the format that I'm using:

    {
    "applinks": {
        "apps": [],
        "details": [
            {
                "appID": "9JA89QQLNQ.com.apple.wwdc",
                "paths": [ "/videos"]
            }
        ]
    }
}

But still working perfectly on Xcode simulators but not on my iPhone, what am I missing?

Upvotes: 2

Views: 2346

Answers (1)

Lucas Pereira
Lucas Pereira

Reputation: 71

After some frustrations, it seems like it might take some time to universal link to work after install it on the iPhone. Fortunately Xcode allows it to happen on simulator instantly.

Upvotes: 5

Related Questions