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.

{
  "applinks": {
      "apps": [],
      "details": [
      {
        "appID": "V2M9M9Y2.com.mrblab.newsfreak",
        "paths": ["*"]
      }
    ]
  }
}
  1. Now, replace the appID value with your "<teamID>.<ios_package_name>"

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.

  1. Save the file.

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

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