Android Studio does not interact with adb GLIBC .... no error found

Android studio usually communicated with adb. Immediately after updating the platform-tools to version 23, the Android studio stopped communicating with adb.

The message is displayed:

Unable to create debug bridge: cannot start adb server: cannot determine adb version, adb output: / data / programs / android -sdk / platform-tools / adb: /lib64/libc.so.6: version 'GLIBC_2.14' is not found (required / Data / programs / Android-SDK / platform tools / ADB) / data / programs / android-sdk / platform-tools / adb: /lib64/libc.so.6: version 'GLIBC_2.15' not found ( required / Data / programs / Android SDK / platform tools / ADB)

I have Centos 6.5 (final) Linux kernel 2.6.32.431.el6.x86_64 Gnome 2.28.2

+7
android linux android-studio adb
source share
2 answers

I think the only solution to this problem is to update the distribution, because you cannot just upgrade GLIBC to dist

A temporary solution is to roll back to the previous version of the platform tools.

The introduced version is platform-tools_r23.1.0 . The latest working version is platform-tools_r23.0.1 .

You can download the latest working version from http://dl-ssl.google.com/android/repository/platform-tools_r23.0.1-linux.zip

Just extract it and replace the platform tools folder inside the sdk folder.

+15
source share

I found a workaround: I have a copy of a previous version of the platforms folder. I replaced the new folder with an older one. return to normal.

But I still want someone to find a solution so that the v23 platform tools work on a Centos machine.

+2
source share

All Articles