Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to inspect and debug the MAUI hybrid blazor webview on Android?

Prior to the latest release candidate (RC1) I was able to inspect and debug the android blazor webview using chrome, by navigating to chrome://inspect/#devices. However, after updating, the chrome tools no longer shows the blazor/maui webview. Is it possible to re-enable this feature?

enter image description here

like image 385
Alexander Blyth Avatar asked Oct 17 '25 06:10

Alexander Blyth


1 Answers

The blazor web view deveoper tools must now be added as a service. See the maui documentation

#if DEBUG
    builder.Services.AddBlazorWebViewDeveloperTools();
#endif
like image 161
Alexander Blyth Avatar answered Oct 19 '25 21:10

Alexander Blyth