3

I have an Android app with a webview that crashes after about 15 minutes of running. There isn't a stacktrace on logcat, only the following error message appears before the crash :

[ERROR:aw_browser_terminator.cc(81)] Render process (29413) kill (OOM or update) wasn't handed by all associated webviews, killing application.

What could be the cause of this?

NB : The webview loads an Angular 5 web application which contains a few svg charts.

Edit
My code is the following

final WebSettings ws = webView.getSettings();
ws.setJavaScriptEnabled(true);
ws.setDomStorageEnabled(true);
ws.setAllowContentAccess(true);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
  ws.setAllowFileAccessFromFileURLs(true);
  ws.setAllowUniversalAccessFromFileURLs(true);
}
webView.setWebViewClient(new WebViewClient());
webView.setWebChromeClient(new WebChromeClient());

webView.loadUrl("http://192.168.137.133/sectiontasks");
Dunisani Matt
  • 51
  • 1
  • 6

0 Answers0