如何在 Android 上检查和调试 MAUI 混合 blazor webview?

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

在最新的候选版本 (RC1) 之前,我能够使用 chrome 检查和调试 android blazor webview,方法是导航到 chrome://inspect/#devices。但是,更新后,chrome 工具不再显示 blazor/maui 网络视图。是否可以重新启用此功能?

现在必须将 blazor webview 开发人员工具添加为服务。参见 maui documentation

#if DEBUG
    builder.Services.AddBlazorWebViewDeveloperTools();
#endif