Skip to main content

Recommended: JavaScript SDK for React Native

While this SDK is still supported, we recommend using newer JavaScript SDK, which is optimized for React Native, but also comes with a host of other benefits.
Some features, like device registration, require universal links (iOS) or App Links (Android) instead of custom URL schemes. Unlike deep links, universal links use your domain to open your app, which provides better security because they require you to prove ownership of the domain.

1. Configure your domain

Host an apple-app-site-association (AASA) file at https://yourdomain.com/.well-known/apple-app-site-association:
Replace <TEAM_ID> with your Apple Team ID and <BUNDLE_ID> with your app’s bundle identifier (e.g., com.mycompany.myapp). The file must be served over HTTPS with Content-Type: application/json and without any redirects. For full details, see Apple’s Universal Links documentation.

2. Configure your app

Add the associated domain to your app.json or app.config.js:

1. Configure your domain

Host a Digital Asset Links file at https://yourdomain.com/.well-known/assetlinks.json:
Replace <SHA256_FINGERPRINT> with your app’s signing certificate fingerprint. For full details, see Android’s App Links documentation.

2. Configure your app

Add the intent filter to your app.json or app.config.js:

Register with Dynamic

After configuring your domain and app, add your universal link URL in the Dynamic Dashboard under Account Security > Mobile Deeplink URL.

Next steps

Last modified on July 24, 2026