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

前端 未结 12 1552
不思量自难忘°
不思量自难忘° 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:57

    The libstdc++.so.6 is the cause (as pointed out by @doruMarinau); Android Studio 2.3 moved the file to a new folder your_sdk/emulator/lib64.

    If using Linux, create a symlink for it:

    $ ln -sf /usr/lib/libstdc++.so.6  /your_sdk/emulator/lib64/libstdc++/libstdc++.so.6
    

提交回复
热议问题