App crashes (sometimes) with Fatal signal 11 (SIGSEGV), code 1

前端 未结 3 731
遇见更好的自我
遇见更好的自我 2020-12-15 22:12

I am developing an app with the HERE SDK, and everything worked fine until now. I get errors like this one:
Fatal signal 11 (SIGSEGV), code 1, fault addr 0x750057

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-15 22:38

    Can you paste any more info from adb logcat? It is currently not enough information for us to help you out. A segfault in the finalizer daemon can imply double deletion of native objects. Without more information, it could be anywhere in the OS or in the SDK.

    The skipped frames means your app is processing lots of data in the main thread. Skipping 161 frames means over 3s of busy time! Please try to use AsyncTasks or threads to optimize your app.

    It seems you are using GSON type deserializer, which will not construct our native objects correctly. Manually deserializing the lat, lng and calling new GeoBoundingBox() will not crash.

提交回复
热议问题