Fatal signal 11 (SIGSEGV), code 1, fault addr 0x48 in tid 21741 (RenderThread) in android in rear case in some device

感情迁移 提交于 2019-12-02 08:50:52

问题


Fatal signal 11 (SIGSEGV), code 1, fault addr 0x48 in tid 21741 (RenderThread) in occured in the rearest case in some device.If anyone knows please answer.Due to this error android application crash at every activity.

<activity
        android:name=".HomeActivity"/>

crash


回答1:


Solved.

just add: android:hardwareAccelerated="false" in manifest file in activity

<activity
        android:hardwareAccelerated="false"
        android:name=".HomeActivity"/>

Reference: Hardware Acceleration.



来源:https://stackoverflow.com/questions/42966459/fatal-signal-11-sigsegv-code-1-fault-addr-0x48-in-tid-21741-renderthread-i

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!