(Android) Native crash at /system/lib/libhoudini.so on Asus Phone

前端 未结 3 1638
面向向阳花
面向向阳花 2021-01-22 09:47

I received crash errors very much from user at Google Play. And all those error occur on Asus phone ( Asus zenfone 4,5,6 and fonepad 7).

I don\'t known what those error

相关标签:
3条回答
  • 2021-01-22 10:29

    I don't think this is anything you can avoid yourself. This is a direct crash from the device and the OS not your app.

    I've had this as well, its not necessarily a problem with your app though. The phone could be doing lots of things in the background which causes something within the OS to crash, but your app somehow receives the crash report, not sure why, I would guess because your app was in the foreground when something within the OS crashed, your app received the crash info.

    0 讨论(0)
  • 2021-01-22 10:30

    libhoudini is responsible for running Arm code on x86 devices. Sometimes it have bugs that are causing apps to crash. The best solution is to include the x86 library too, that way the native code will run natively without using libhoudini, thus preventing any chance for such crashes.

    0 讨论(0)
  • 2021-01-22 10:37

    the android 6.0 system, I also met, looks like Google is not fundamentally solved this problem, the only way to solve is the X86 and arm library must be left apart.

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