Need help with iOS Universal Link / apple-app-site-association

Hi all!

I have problems getting my universal link for iOS working.

I’ve added a file called “apple-app-site-association” (without a file extension) to my domain’s /.well-known directory.

It looks like this. App ID matches what I see as ID in apple store connect.

I want to open the app for all directories on the domain - including the root directory

{
  "applinks": {
    "apps": [],
    "details": [{
      "appID": "com.my.myapp",
      "paths": ["*"]
    }]
  }
}

Does this look right to you?

Your appID looks wrong, there should be a prefix before the bundle ID

This tool is helpful for validating apple-app-site-associations: Apple Developer

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.