The video uses a specific AI coding tool to demonstrate the setup, but the configuration works 1:1 with Cursor, Claude Code, or any other tool. Despia is web framework and tooling agnostic, so the only thing that matters is the SDK call.
Enable Web App Synchronization in the Despia Editor before testing. Navigate to Add-ons, then Hardcoded, then toggle Web App Synchronization on for the platforms you are shipping to.
Installation
- Bundle
- CDN
How it works
iOS and Android each look for a verification file on your domain when a link is opened. If the file proves your app owns the domain, the OS routes the URL into your installed app. Otherwise it falls back to the browser. Both files live under/.well-known/ on the same domain that hosts your web app.
iOS configuration
Host the Apple App Site Association file at:apple-app-site-association.
Android configuration
Host the Digital Asset Links file at:Hosting requirements
Both files must be served over HTTPS, must be accessible without any redirects, and must returnContent-Type: application/json. The iOS file must have no file extension.
Verification
Test deep linking on a real device before submitting builds.- iOS: use Apple’s App Search API Validation Tool, or watch Safari Web Inspector logs when launching the app to confirm the AASA file loaded.
- Android: use Google’s Digital Asset Links testing endpoint, or run the App Links Assistant inside Android Studio.
Resources
NPM Package
despia-native