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
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.
libstdc++.so.6
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