maui-deep-linking
Installation
SKILL.md
.NET MAUI Deep Linking
Platform Gotchas
Android
AutoVerify = trueis required on theIntentFilterfor App Links (not just deep links). Without it, Android shows a disambiguation dialog instead of opening your app directly.- Handle intent in both
OnCreateandOnNewIntent.OnCreatefires for cold starts;OnNewIntentfires when the app is already running. Missing either means links silently fail in one scenario.
// ❌ Only handles cold-start links
protected override void OnCreate(Bundle? savedInstanceState)
{
base.OnCreate(savedInstanceState);
HandleDeepLink(Intent);
Related skills