Android 7 Native Crash: libc.so tgkill

Looking at the dump you provided gives some clues: _ZN7android10uirenderer12renderthread12RenderThread10threadLoopEv This indicates that the error occurred in the UI thread. libhwui.so x 6 This indicates that this is happening in the middle of some graphics/ui related code. libcutils.so – __android_log_assert This is an assert handler, so most likely some kind of assert was violated in … Read more