From 1c28973c2fb92b15b29d9b4c47904e8a2f3ec936 Mon Sep 17 00:00:00 2001 From: Alexander Mahr Date: Fri, 18 Jul 2025 08:40:57 +0200 Subject: [PATCH] add debug flag to be uncommmeted --- app/.Makefile.scripts/make--AppActivity.java.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/.Makefile.scripts/make--AppActivity.java.sh b/app/.Makefile.scripts/make--AppActivity.java.sh index ae416a8..873c271 100755 --- a/app/.Makefile.scripts/make--AppActivity.java.sh +++ b/app/.Makefile.scripts/make--AppActivity.java.sh @@ -55,6 +55,10 @@ public class AppActivity extends Activity { // we create a webview (there is also setwebviewclient-vs-setwebchromeclient WebViewClient myWebViewClient= new WebViewClient(); myWebView.setWebViewClient(myWebViewClient); + + // uncomment to enable webview debug + //myWebView.setWebContentsDebuggingEnabled(true); + // to setup settings WebSettings myWebSettings = myWebView.getSettings(); myWebSettings.setBuiltInZoomControls(true);