App Links (for opening the app from links)
So that links likehttps://your-subdomain.deeplink-domain.com/your-path open your app:
- In
android/app/src/main/AndroidManifest.xml, add an intent filter to your main Activity (e.g.MainActivity). UsesingleTaskso links don’t stack activities.
- Replace
android:host(and path if needed) with the host you use in the DeepLink dashboard.
assetlinks.json for your domain once the app (package name and SHA-256 fingerprint) is configured in the dashboard. You don’t need to host or manage this file yourself.
Initialize the SDK
In your React Native app, call the SDKconfigure with your API key (and optional base URL) as shown in Installation. On first launch, the SDK will:
- Read the Play Install Referrer (when present).
- Report the install to the Track Install API so clicks from your DeepLink domain can be attributed.
- Process any launch deep link from the Activity intent.
Troubleshooting
- App doesn’t open from link — Confirm the host in the intent filter matches the link domain, and that
assetlinks.jsonis reachable and correct. - Install not attributed — Ensure the user actually installed from a link that points to your DeepLink domain (and that the referrer is set by the store/link).
Handling links
Pass deep link URLs to the SDK and subscribe to resolved/failed events.

