fix(android): WebView url and event handling (#10147) (#10148)

closes https://github.com/NativeScript/NativeScript/issues/10147
This commit is contained in:
Prabu Devarrajan
2023-01-03 18:38:33 -08:00
committed by GitHub
parent 00944bb1b5
commit 84440876fe
2 changed files with 9 additions and 2 deletions

View File

@@ -29,8 +29,7 @@ function initializeWebViewClient(): void {
// Handle schemes like mailto, tel, etc
if (!android.webkit.URLUtil.isNetworkUrl(url)) {
openUrl(url);
return true;
return openUrl(url);
}
return false;