# Deeplink Setup

To create a **Deeplink** to your application content, you should follow this setup:

## Admin Panel Setup&#x20;

1. Go to your **`admin panel`** and open **`Settings`**
2. Change **`Deeplink`** field with your custom deeplink and **`Save`** for example **`app.yourAppName.scheme`**&#x20;

![](https://3319500722-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-McTnNLRtNdragDlAvxs%2F-MfSuc5IeziqtjLWp5G1%2F-MfSxBnylhI9FRDaNzwd%2FCapture%20d%E2%80%99e%CC%81cran%202021-07-25%20a%CC%80%202.52.17%20PM.png?alt=media\&token=791c78b5-de76-4bb6-bd1d-0fae97bb5ad9)

{% hint style="info" %}
**NB:**\
Don't forget to change **FlyWeb\_Flutter/assets/cfg/configartion.json** from **Config Application**
{% endhint %}

## Android Setup

1. Open **`FlyWeb_Flutter`** project with **`Android Studio`**
2. Go to file **`/android/app/src/main/AndroidManifest.xml`**&#x20;
3. Find this code :

   ```
   <data android:scheme="app.flyweb.scheme" />
   ```

   �and change the schema with your **`schema`** set in the admin panel

![](https://3319500722-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-McTnNLRtNdragDlAvxs%2F-MfSuc5IeziqtjLWp5G1%2F-MfSza6CXY5kKcwV4TaU%2FCapture%20d%E2%80%99e%CC%81cran%202021-07-25%20a%CC%80%203.03.18%20PM.png?alt=media\&token=476fdce8-7ca4-400c-836a-73eeb287d444)

## iOS Setup

1. Open **`FlyWeb_Flutter`** project with **`Android Studio`**
2. Go to file **`/ios/Runner/info.plist`**
3. Find this code :

```
	<array>
		<dict>
			<key>CFBundleTypeRole</key>
			<string>Editor</string>
			<key>CFBundleURLName</key>
			<string>app.flyweb.scheme</string>
			<key>CFBundleURLSchemes</key>
			<array>
				<string>app.flyweb.scheme</string>
			</array>
		</dict>
	</array>
```

&#x20;   and change the schema **`app.flyweb.scheme`** with your **`schema`**

![](https://3319500722-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-McTnNLRtNdragDlAvxs%2F-MfSuc5IeziqtjLWp5G1%2F-MfT002GXoVSfPTZvjJM%2FCapture%20d%E2%80%99e%CC%81cran%202021-07-25%20a%CC%80%203.10.09%20PM.png?alt=media\&token=eb2042ad-4f91-4db6-892b-fc7fab82d94d)
