In my .Net MAUI app (not Blazor app) I have a WebView
control in which I am rendering html pages generated at runtime (epub book pages), and it has lot of JavaScript code.
I need to inspect the WebView
and access the debugger tools, to debug any issues with JS, etc.
For UWP apps, I used to use this https://apps.microsoft.com/store/detail/microsoft-edge-devtools-preview/9MZBFRMZ0MNJ?hl=en-us&gl=us
I am looking for something similar for Android using MAUI.
I found a similar question, but it's for Blazor app and builder.Services.AddBlazorWebViewDeveloperTools()
does not work on MAUI app.
How to inspect and debug the MAUI hybrid blazor webview on Android?