Skip to content

Instantly share code, notes, and snippets.

@trouni
Last active August 31, 2023 08:30
Show Gist options
  • Save trouni/6d918a0a7072500be4540fe488c6aa21 to your computer and use it in GitHub Desktop.
Save trouni/6d918a0a7072500be4540fe488c6aa21 to your computer and use it in GitHub Desktop.
PWA Deep-linking (Android only, as of August 2023)
// Add these parameters to your PWA manifest.json file
{
// ...
"scope_url": "https://www.myapp.com/",
"start_url": "https://www.myapp.com/",
"intent_filters": {
"scope_url_scheme": "https",
"scope_url_host": "www.myapp.com",
"scope_url_path": "/"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment