I'm getting this exact crash/error message from logcat for my Android app.
A/libc: Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x0 in tid 9500 (com.schonell), pid 9500
No more crash log details only this message showing. This happened every time when my video calling app end the calls and crash the app. Video call used Linphone for Audio and Google exoplayer for video showing.
I've no clue why this is happening.
Maybe you have a
android:name="androidx.multidex.MultiDexApplication"
registered in your Manifest.xmlI also had a similar problem after adding the
android:name="androidx.multidex.MultiDexApplication"
in Manifest. After removing it from the Manifest, the error disappeared.