Emulator on Android Studio doesn't start after SDK tools update to 25.3.1

前端 未结 12 1584
不思量自难忘°
不思量自难忘° 2020-12-14 07:41

After updating my Android SDK tools today to 25.3.1, the emulator won\'t run anymore.

I can open the AVD Manager. When I hit \"Play\" on one of the emulators on the

12条回答
  •  孤街浪徒
    2020-12-14 07:59

    The only solution which worked for me, was to install following missing libraries:

    $sudo apt-get install lib64stdc++6:i386
    $sudo apt-get install mesa-utils
    

    Once you have them, update the one there in sdk's emulator with these as following:

    $ ln -sf /usr/lib/libstdc++.so.6  /home/[YOUR_SYSTEM_USERNAME]/emulator/lib64/libstdc++/libstdc++.so.6
    

    Launch your emulator again and it will work just fine.

提交回复
热议问题