> 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.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://doc.newsfreak.mrb-lab.com/additional-setup/11.-deep-app-links-setup/11.3-ios-setup.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
