A/libc: Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x20 in tid 8890 (RenderThread), pid 8833

Viewed 2461

I am getting a crash on some actions(navigating to a screen, open video player etc) in my react native app. I have logged the error in android stdio and it was as below:

A/libc: Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x20 in tid 8890 
    (RenderThread), pid 8833

The crash is resolved by setting below in Android Manifest

 android:hardwareAccelerated="false"

But my react-native-video player is now showing black screen after setting android:hardwareAccelerated to false and I think it is not the best way to resolve it.

I don't know why I am getting this crash. I would be thankful for any help.

1 Answers

I have faced the same problem; was using "realm": "^10.9.1", in a “React Native application” to save some “Task Data” in realmDB.

Previously I was using "React-Navigation 5x" which have a dependency on react-native-reanimated. Now I have upgraded my code to "React-Navigation 6x", and removed old react-native-reanimated package version 2.0.0-rc.2 .

Related