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?
The blazor web view deveoper tools must now be added as a service. See the maui documentation
#if DEBUG
builder.Services.AddBlazorWebViewDeveloperTools();
#endif