> For the complete documentation index, see [llms.txt](https://doc.newsfreak.mrb-lab.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.newsfreak.mrb-lab.com/additional-setup/11.-deep-app-links-setup/11.3-ios-setup.md).

# 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="/files/Gc1k2t4JwX9NqbGPXnGr" 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="/files/wEAa7kJpFK1kajjbv7Od" alt=""><figcaption></figcaption></figure>

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