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
I think You are handling all your Http connections in the Main UI thread.Android doesnt allow you to do this from 2.3 and upwards. You will need to perform all your Http connections through asynchronous tasks.
Google for tutorials on setting up your asynctask class as per your requirement.The link to the developer page will give you more info.
http://developer.android.com/reference/android/os/AsyncTask.html
Since KitKat, I have issues with WebViews
(freeze, crash)
I have resolved these issues deactivating hardware acceleration for webViews
. It could work for you.
if (Build.VERSION.SDK_INT >= 19) // KITKAT
{
webView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
}