Deep linking in Capacitor apps requires handling three different mechanisms: custom URL schemes that work offline, iOS Universal Links that need a hosted apple-app-site-association file, and Android App Links with their assetlinks.json verification. This guide walks through the platform-specific configuration (Info.plist entries, AndroidManifest intent filters, Associated Domains capabilities) and provides working code for parsing incoming URLs and routing them through React or Vue Router. The framework integration patterns are solid, and it covers the tedious verification steps like checking SHA256 fingerprints and validating those JSON files Apple and Google cache. Use this when you need users to tap a link in email or SMS and land directly on a specific screen in your app, not just on the home screen.
npx skills add https://github.com/cap-go/capgo-skills --skill capacitor-deep-linking