Bhaskar Dabhi
Bhaskar Dabhi

Reputation: 909

Not able to setup Deep linking or Universal linking for ios app

I am a newbie in ios development and working on Universal deep-linking. I have added apple-app-site-association file to my website. (I have validated the file) Client enabled Associated Domains feature for the app and added me as a team member. He has an individual account and sent me an invitation for the app.

I have a couple of questions:

I went through a couple of tutorials but couldn't figure out if it's because of signing in.

Upvotes: 0

Views: 595

Answers (1)

kannan
kannan

Reputation: 374

Universal Links

Step 1: Register your app at developer.apple.com.

Step 2: Enable ‘Associated Domains’ on your app identifier.

enter image description here

Step 3: Enable ‘Associated Domain’ on in your Xcode project.

enter image description here

Step 4: Configure your website to host the ‘apple-app-site-association’ file

AASA (apple-app-site-association) File

{
  "applinks": {
    "apps": [],
    "details": [
      {
        "appID": “*****.com.*****.ios",
        "paths": [
          "*"
        ]
      }
    ]
  }
}

Step 5: Host your AASA file on your domain. After validating it using AASA validator.

Refer: https://developer.apple.com/ios/universal-links/

Upvotes: 1

Related Questions