Learn how to embed your webpage inside a mobile WebView and properly handle deep links across different frameworks.
<queries>
tag in your app’s AndroidManifest.xml
.
This is mandatory starting Android 11 (API 30) for privacy reasons.
Without this, calls like PackageManager.queryIntentActivities()
or launching those intents may not work as expected.
canOpenURL
), you must declare those schemes inside the LSApplicationQueriesSchemes
array in your Info.plist
.
Without this, canOpenURL
will always return false for those schemes (except for some system schemes).
This is required since iOS 9 for privacy reasons.
Platform | Requirement |
---|---|
Android | Declare intent filters inside <queries> tag in AndroidManifest.xml |
iOS | Declare URL schemes inside LSApplicationQueriesSchemes in Info.plist |