Are you a developer seeing this in your logs?
If you are developing an Android app and seeing com.msg.needchromeapp or similar flags in your WebViewClient, check your implementation. You might be trying to load a URL in a WebView that requires features only available in the full Chrome browser, or you are redirecting to a URI that the WebView cannot handle. com msg.needchromeapp
Ensure you are handling URL loading correctly: Are you a developer seeing this in your logs
// Check if the URL should be handled by an external browser
if (url.startsWith("http:") || url.startsWith("https:"))
// If your WebView cannot handle custom schemes or special headers,
// you may need to fire an Intent to open Chrome explicitly.
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
Also, ensure your app correctly declares the <queries> element in the AndroidManifest.xml if you are querying for Chrome's package name on Android 11 (API level 30) or higher. Also, ensure your app correctly declares the <queries>
If the pop-ups persist:
Because the package name may be hidden, use this method: