Last active
August 31, 2023 08:30
-
-
Save trouni/6d918a0a7072500be4540fe488c6aa21 to your computer and use it in GitHub Desktop.
PWA Deep-linking (Android only, as of August 2023)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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