A deep link is a URL that opens directly to a specific screen inside a mobile app — bypassing the app's landing / onboarding flow — and gracefully falls back to the App Store / Google Play if the app isn't installed. Without deep linking, every click from outside the app lands the user on the home screen, where they have to navigate to find what they came for. Conversion suffers; retention suffers; intent gets lost.
iOS implementation: Universal Links. HTTPS-based links that the iOS system intercepts when the linked app is installed. Configured via the `apple-app-site-association` file hosted at the website's root, declaring which paths route into the app. The same URL works in three modes: opens the app if installed, opens the website if not installed, can be shared / pasted naturally.
Android implementation: App Links. Conceptually identical — HTTPS URLs verified via the `assetlinks.json` file on your website's root. Android handles the same fallback / install / web behavior.
Deferred deep linking is the trickiest case: the user clicks a deep link, the app isn't installed, the user installs the app from the store — and the app needs to remember the original destination and route there on first open. The mechanism: the MMP captures the link click before install (via fingerprint, attribution token, or device-level signal), the user installs, the MMP SDK in the new app retrieves the deferred destination on first launch and routes the user to it.
Why deep linking matters for retention and attribution
- Retention: users who land on their intended content first-session retain 2-3× better than users who land on a generic home screen.
- Attribution: deep-link metadata (campaign, creative, source) is preserved through the install, enabling fine-grained source tracking even for installs that came via organic-looking channels (email, push, web).
- Cross-channel UX: email / push / web / ad clicks all route consistently into the right in-app destination.
Mature mobile-first apps treat deep linking as foundational infrastructure, not a feature.