APPLE IOS UNIVERSAL LINKS

Hello, I have followed all the documentation for my new iOS Application, I have. uploaded apple-app-site-association file to the server's /.well-known/ folder.

Error no apps with domain entitlements

The entitlement data used to verify deep link dual authentication is from the current released version of your app. This data may take 48 hours to update.

My application is uploaded to test-flight not published on Apple store, I want to test and verify universal links before releasing it publicly, at the moment deep links are not working.

I am following the exact documentation.

I added http and https schemes in URL TYPES:

Added applinks to domain association :

apple-app-site-association file:-

{
  "applinks": {
      "apps": [],
      "details": [
          {
              "appID": "<TEAMID>.<APP_IDENTIFIED>",
              "paths": [ "*" ]
          }
      ]
  }

}

Have you checked the entitlements ? Do they differ from the published version ?

Error advise to wait for up to 2 days ? did you wait for 2 days.

In addition, I'm not sure to interpret correctly the message:

The entitlement data used to verify deep link dual authentication is from the current released version of your app. This data may take 48 hours to update.

Does it mean that you have to publish, wait for 48 hours, then deep links should work ?

Also found this on S.O. which may help.

https://stackoverflow.com/questions/40087119/no-apps-with-domain-entitlements

APPLE IOS UNIVERSAL LINKS
 
 
Q