breautek commented on issue #1929: URL: https://github.com/apache/cordova-android/issues/1929#issuecomment-4488143646
According to Google (via https://issues.chromium.org/issues/40940738) -- the PacProcessor is not a fatal error and can be ignored. It's a red herring and likely not related to the "white screen" issue. > This doesn't indicate any problem with WebView (it's logged at level info because it's not a problem), so the simplest thing to do is just ignore it. > >The interface between the framework and WebView changes over time as new functionality is added, but we just have one build of WebView that supports all of the OS versions that we update. So, WebView includes references to the PAC processor implementation added in Android 11, but since this doesn't exist on older versions it causes ART to emit this message during class verification. The code that uses this is never called on older OS versions and so it does not matter that it failed verification. > >I don't think there is any way we can avoid this happening in WebView; it's not possible to avoid referencing the class because of the specific way the interface is designed, which can't be changed now. White screen issues are typically just a javascript error or something preventing your app from loading or initiating. It could be a misbehaving plugin or something more local to your own application. The best way to investigate further is by looking at the web developer console to see if there are any javascript errors present. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
