Reputation: 2845
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"/>
Upvotes: 6
Views: 3950
Reputation: 2845
Solved.
just add: android:hardwareAccelerated="false"
in manifest file in activity
<activity
android:hardwareAccelerated="false"
android:name=".HomeActivity"/>
Reference: Hardware Acceleration.
Upvotes: 15