Intercept and route external URL intents, deep links, and custom scheme parameters to web routes.
Intercept and route external URL intents with Intent Edge Routing. Nativine embeds native iOS Universal Links (NSUserActivity) and Android App Links (Intent.ACTION_VIEW) routing engines, guaranteeing zero broken deep links and instant sub-route navigation.
Deep links drive user acquisition from marketing campaigns, emails, and social posts. Nativine's Intent Edge Routing plugin manages URL pattern matching at native speeds before rendering web views:
https://yourdomain.com/* incoming links seamlessly without opening external mobile web browsers.myapp://product/123) for legacy app integrations.To register custom deep link listener callbacks in JavaScript, call nativine.intentEdge.onDeepLink():
nativine.intentEdge.onDeepLink({
callback: 'handleIncomingDeepLink'
});
function handleIncomingDeepLink(link) {
console.log("Opened Deep Link URL:", link.url);
console.log("Parsed Path:", link.path); // e.g. /product/123
console.log("Query Parameters:", link.queryParams);
}
| Parameter | Type | Description |
|---|---|---|
callback | string | Required. JS callback function receiving incoming deep link payload object. |
Yes. Nativine provides verified apple-app-site-association and assetlinks.json snippets for your web server hosting.
Yes. Opening a Universal Link or App Link launches the app process and passes the target URL path immediately to web view navigation.