11.3 iOS Setup
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.
{
"applinks": {
"apps": [],
"details": [
{
"appID": "V2M9M9Y2.com.mrblab.newsfreak",
"paths": ["*"]
}
]
}
}
Now, replace the appID value with your "<teamID>.<ios_package_name>"
Save the file.
From the source code, go to the ios/Runner/Runner.entitlements file and add your website URL. (Don't add any http/https scheme)

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

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