5

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

ankit
  • 2,591
  • 2
  • 29
  • 54

1 Answers1

13

Solved.

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

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

Reference: Hardware Acceleration.

ישו אוהב אותך
  • 28,609
  • 11
  • 78
  • 96
ankit
  • 2,591
  • 2
  • 29
  • 54