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?
Asked
Active
Viewed 2,097 times
2
-
Here is a detailed answer for that https://stackoverflow.com/a/72652029/256925 – Ewerton Jun 16 '22 at 21:27
1 Answers
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