2

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

Alexander Blyth
  • 807
  • 1
  • 9
  • 16

1 Answers1

1

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

#if DEBUG
    builder.Services.AddBlazorWebViewDeveloperTools();
#endif
Alexander Blyth
  • 807
  • 1
  • 9
  • 16