Error emulating AVD in android studio

3

errortryingtoemulateadeviceinandroidstudio

It lets you create the device, but at the time of emulating this error, I already searched, but did not get anything related.

    
asked by anonymous 19.12.2016 / 02:34

1 answer

1

Friend, good afternoon!

Have you tried this?

With the Android Studio update, Google has started using libstdc++ , and it is incompatible with the Intel driver installed on your system.

Make sure your system has the packages: lib64stdc++6 and mesa-utils , if you do not install using the commands below:

sudo apt-get install lib64stdc++6 mesa-utils

Next, make the symbolic link from the libraries to the path of the android sdk tools

cd ~/Android/Sdk/tools/lib64/libstdc++

sudo mv libstdc++.so.6 libstdc++.so.6.og

sudo ln -s /usr/lib64/libstdc++.so.6 ~/Android/Sdk/tools/lib64/libstdc++

If you have any questions, check the link

    
25.08.2017 / 22:19