🔗Universal Links

Deeplinks (Or Universal Links) is a useful feature for associating your website domain with your mobile native app. Also, your users will be able to click a deep URL (Url with some path or parameter), and they will be redirected to the same page in the app.

iOS

Universal Links are Apple’s deep linking technology, designed to replace the older URI-scheme deep linking method. They are available for devices running iOS 9 and above.

While Universal Links allow for deep linking behavior similar to URI schemes, they function very differently behind the scenes. Universal Links look like normal HTTPS URLs, e.g. “https://www.linkedin.com”. When a user clicks a Universal Click, the user’s device opens the app that the link was configured for. If the app is not installed on the device, the user is taken to the actual URL in their mobile browser.

To configure your app to work with Universal Links (Associated Domains) feature you need to do the following steps:

  1. Add the Associated Domains feature to your Bundle Identifier.

  2. Enable the Universal Links feature and fill out all relevant information.

  3. Setup your website to work with Apple's Associated Domains.

Add Associated Domains feature to Bundle Identifier

Android

To configure your app to work with Universal Links (Associated Domains) feature, you need to do the following steps:

  1. Enable the Universal Links feature and fill out all relevant information.

  2. Setup your website to work with Apple's Associated Domains.

Turn on the Universal Links feature on the Native Feature step and fill out the following information:

  • Associated Domain - is your website domain. We will prefill it with your App URL's domain. You can modify this value, but make sure you've entered a valid domain. Changing this field in the future will require a rebuild.

Last updated