It's weird that you can't reproduce the issue in your environment. All my test devices have this issue (e.g. Google Pixel 6a, Samsung Galaxy devices). I would like to add that all my system apps are up to date (Google Play Services, Android System WebView).
I'm sending you some screenshots from your sample app from here:
https://github.com/googleads/googleads-mobile-android-examples/tree/main/java/admob/BannerExampleThe fourth screenshot shows the "Toast" that appears in this part of the app code:
googleMobileAdsConsentManager.showPrivacyOptionsForm(
this,
formError -> {
if (formError != null) {
Toast.makeText(this, formError.getMessage(), Toast.LENGTH_SHORT).show();
}
});
Since I'm in the EU, I'm setting this flag to test messages for US users:
ConsentDebugSettings.DebugGeography.DEBUG_GEOGRAPHY_REGULATED_US_STATE
As you can see in the "onConsentFormDismissed" event (right after closing the window) an error message is displayed: "We are getting some wrong with the webview ".
Thank you.