Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio emulator: Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)

My android studio emulator not starting. I'm using Android Studio 3.0 on Ubuntu 17.10

Error - Emulator: Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)

like image 554
Turtuvshin Avatar asked Nov 20 '17 04:11

Turtuvshin


4 Answers

I solved it by going into my virtual device's settings and changing "Emulated Performance" from "Automatic" to "Software".

like image 173
Beatrice Lin Avatar answered Nov 13 '22 05:11

Beatrice Lin


I solved this problem by changing my graphics driver from Software and Updates. Head over to Additional Drivers and Use the proprietary and tested one. Check if it helps. Thanks

like image 22
Mihodi Lushan Avatar answered Nov 13 '22 04:11

Mihodi Lushan


Changing "Emulated Performance" from "Automatic" to "Software" was a temporary solution for me (I am on Linux btw). The simulator would crash in a few seconds.

Instead this did it for me:

cd ~/Development/Android/Sdk/emulator/lib64/ mv libstdc++ libstdc++.bak

credit: https://cialu.net/android-studio-how-to-solve-emulator-libgl-error-on-ubuntu-systems/

like image 13
agenteo Avatar answered Nov 13 '22 04:11

agenteo


I have this problem to Emulated Performance = software doesn't help, because your emulator will be broken and can not be working if your app needs more process...

I have Ubuntu 18 and install my graphics card Nvidia, and it's solved now

for ubuntu you can try it:

For Nvidia

sudo apt-get install nvidia-352  "nvidia-352 is an EXAMPLE In my Device"

and For AMD

sudo apt-get install fglrx

more details:

enter link description here

like image 10
Aras Avatar answered Nov 13 '22 06:11

Aras