Native crash at /system/lib/libwebviewchromium.so on kitkat android 4.4

后端 未结 3 1716
猫巷女王i
猫巷女王i 2020-12-30 01:31

I get \"Native crash at /system/lib/libwebviewchromium.so\" errors many times for android 4.4+. There was no such problem before 4.4.

*** *** *** *** *** ***         


        
相关标签:
3条回答
  • 2020-12-30 01:41

    This could be caused from a graphic memory bug, so you can try to disable some CSS using any -CSS webkit-transform like " -webkit-transform: rotate(0deg) scaleX(1) scaleY(1); ". (I saw this same bug on iOS if you load too many data in GPU memory).

    0 讨论(0)
  • 2020-12-30 01:47

    I'm experiencing a very similar issue with my app on Android 4.4.2.

    I found this thread on Chromium support forum that identifies the issue I think is 100% relevant to me, and may be relevant to you.

    https://code.google.com/p/chromium/issues/detail?id=334992

    334992 - WebView on Nexus 10 with stock KitKat 4.4.2 crashes when scrolling up or down

    Basically, when attempting to scroll (up-down, or left-right) on long content that has not fully loaded, you can reliably make the webview control crash.

    It only happens on some devices (like it happens on Galaxy S5 for me, but not Galaxy Mega), but always seems to affect Android 4.4.2.

    Check out that Chromium thread, and I hope that helps.

    0 讨论(0)
  • 2020-12-30 01:53

    There's a chromium bug link on this line:

    06-25 08:31:19.919: E/chromium(2652): [ERROR:gles2_cmd_decoder_autogen.h(69)] [GroupMarkerNotSet(crbug.com/242999)!:C0EBA4B9]GL ERROR :GL_INVALID_ENUM : glBindTexture: target was GL_TEXTURE_EXTERNAL_OES
    

    which is pointing to : https://code.google.com/p/chromium/issues/detail?id=242999

    Most probably, the GLES implementation on genymotion is missing OES_EGL_image_external* *http://www.khronos.org/registry/gles/extensions/OES/OES_EGL_image_external.txt

    0 讨论(0)
提交回复
热议问题