Native crash in unknown unknown

后端 未结 2 1108
隐瞒了意图╮
隐瞒了意图╮ 2021-01-12 11:26

I have an app which is entirely written in Java - no native code whatsoever - and I\'ve twice had a crash report on the Developer Console \"Native crash in unknown unknown\"

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-12 12:20

    The bug report tells a few thing

    • Build fingerprint: 'samsung/m0xx/m0:4.3/JSS15J/I9300XXUGMJ9:user/release-keys' It's an official Samsung ROM.
    • signal 6 (SIGABRT) There was probably an internal error in a native library.
    • #00 pc 0001c574 /system/lib/libc.so (epoll_wait+12) while waiting for a IO poll on an epoll file.
    • #03 pc 0006bd21 /system/lib/libandroid_runtime.so (android::NativeMessageQueue::pollOnce(_JNIEnv*, int)+22) originally from the Android message queue.

    Bottom line: it's very hard to tell what's happening.

提交回复
热议问题