I am getting this strange crash reports on Lollipop. My app is basically a browser so it makes heavy use of the WebView but I don\'t know that the issue is happening there. Anyw
Since KitKat, I have issues with WebViews (freeze, crash)
WebViews
I have resolved these issues deactivating hardware acceleration for webViews. It could work for you.
webViews
if (Build.VERSION.SDK_INT >= 19) // KITKAT { webView.setLayerType(View.LAYER_TYPE_SOFTWARE, null); }