SIGNAL 11 SIGSEGV crash Android

前端 未结 2 561
谎友^
谎友^ 2020-11-28 09:04

Today I faced an error due to which my Android application is getting by SIGNAL 11.

This error usually occurs due to unauthorized memory area access by Android inter

相关标签:
2条回答
  • Call webview.clearCache(); and webView2.destroyDrawingCache();

    That should solve the problem.

    0 讨论(0)
  • 2020-11-28 09:14

    I have faced the same problem and i had a jni. this fatal exception creates randomly and as i was using it to play audio it crashed about 2min or 6 min or else. After a lots of research i have found that the problem was i had made a native function call from two different thread and when it occurs at the same time it failed.

    Another if you have any jni call from android make sure that you have not passed any null as an argument.

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