Android Intent Scheme Builder

Generate an Android intent scheme from the provided deep link.

Extras

Extras notation follows the reference: `S.key=value;`, `i.num=35;` (link)

Result

Provide valid input to see the result.

About Android intent scheme

An Android intent scheme is an Android-only URL format that turns a clicked link into an Intent to open a specific screen in an app, with Android parameters embedded in the URL (package, component, action, category, MIME, flags, extras, and fallback).
Example: intent://scan/#Intent;scheme=zxing;package=com.google.zxing.client.android;end.
Unlike generic custom schemes, intent URLs can carry typed extras (S/B/i/l prefixes) and a browser fallback URL; for cross-platform, pair with Android App Links and iOS Universal Links.

How to use this site

  • Paste your deep link URL into the input field.
  • Click Run; if configured correctly and the app is installed, your device should open the target screen.
  • If nothing opens, check app installation and required domain associations (Universal Links/App Links).

Tips for reliable testing

Test on real devices and the actual target browser/WebView since handling varies by engine and version. Ensure AndroidManifest entries are correctly set (exported, action/data/category) when relying on implicit routing; prefer explicit component when needed. Always URL‑encode query params and fallback URLs, avoid sensitive data in links, and add a fallback (e.g., store page) to prevent dead ends if the app isn’t installed.