# 11.3 iOS Setup

1. From your Cpanel, go to the **File Manager > Your Site > .well-known** folder and create a file named **apple-app-site-association** and open the file and insert the following code.

```json
{
  "applinks": {
      "apps": [],
      "details": [
      {
        "appID": "V2M9M9Y2.com.mrblab.newsfreak",
        "paths": ["*"]
      }
    ]
  }
}
```

2. Now, replace the appID value with your **"\<teamID>.\<ios\_package\_name>"**

{% hint style="info" %}
You can get Team Id from your ios developer account and the iOS package name is the package name of your ios app which you have created before.
{% endhint %}

2. Save the file.
3. From the source code, go to the **ios/Runner/Runner.entitlements** file and add your website URL. (Don't add any http/https scheme)

<figure><img src="https://193695234-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FuVX9DkcSpz5pWRDwpVCd%2Fuploads%2FK0tqUhl3uOb8CgHowbgI%2Fdeeplinks_ios.png?alt=media&#x26;token=73870c80-ce7f-4012-9c2b-84c179ad27b7" alt=""><figcaption></figcaption></figure>

4. Go to the **ios/Runner/Info.plist** file and add your site URL. (Don't add any http/https scheme)

<figure><img src="https://193695234-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FuVX9DkcSpz5pWRDwpVCd%2Fuploads%2FEpUiyKM0hZ5aONscpgzc%2Fdeeplinks_ios1.png?alt=media&#x26;token=7b611817-fd44-4845-9974-ac17246e3b11" alt=""><figcaption></figcaption></figure>

That's it. iOS configuration for deep/app links is complete.
