We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
error info is: Android Debug Bridge (adb) cannot be found. Please ensure the 'adb' command is on the PATH.
where's the PATH i need to input in eclipse, how can i input adb command in DS-5
my DS-5 version is 5.18
Hello,
Did you install the Android SDK ?
If so, please make sure that the "SDK Tools/platform-tools” is added to the PATH.
You can follow the instructions described in this tutorial to configure the PATH and debug the application:
DS-5 Community Edition / Android Debug Session Tutorial | ARM Development Studio 5
Best regards,Marcelo
This was happening to me as well and I've definitely got ADB in my path.
I'm using linux (Ubuntu 14.04) and what ended up working for me was starting eclipse from the command line. For some reason that helped DS-5 connect to my phone. I also ran into an issue where it was telling me that there was no process information in my .apk file. Turns out I had to set the property "debuggable" to true in my AndroidManifest.xml. Eclipse threw an Android Lint error about this at first, but you can change that to a warning in the preference (Avoid hardcoding the debug mode; Warning in Android Manifest - Stack Overflow).
Hope this helps someone.