Yesterday I updated the SDK and it moved adb.exe. In his place, he left a file called "adb_has_moved.txt", saying
Adb tool moved to platform tools /
If you don’t see this directory in your SDK, launch the SDK and AVD Manager (run the android tool) and install the “Android Platform SDK Tools”
Also update your PATH environment variable to include platform-tools / directory so that you can execute adb from anywhere.
So, I did all this, including PATH, and now I can run adb.exe from any DOS prompt. But I still can not start it from Eclipse (Galileo 3.52). When I try to say it
Android SDK location not configured in settings
... which is wrong. The SDK IS is configured in the settings. The real problem is at the top of the settings window, which says: "Could not find C: \ SDK \ android-sdk-windows \ tools \ adb.exe!" ... I'm not joking - the update moved it to C: \ SDK \ android -sdk-windows \ platform tools . Since it points to a specific (wrong) path, Eclipse bypasses the PATH variable. So, how do I get Eclipse to search in the right place?
source
share