Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have installed Android SDK and Eclipse on my Mac system. I am able to program using Eclipse and have created few sample applications. But I am still not able to access adb through the terminal window. I have tried following command in terminal:

$ pwd
/Users/espireinfolabs/Desktop/soft/android-sdk-mac_x86/platform-tools

$ ls
NOTICE.txt  dexdump     llvm-rs-cc-2
aapt        dx          llvm-rs-cc.txt
adb         lib         source.properties
aidl        llvm-rs-cc

$ adb --help
-bash: adb: command not found

I have also added the ls output so that you know in which window I am.

share|improve this question

1 Answer

up vote 20 down vote accepted

adb is not in your PATH. Bash will first try to look for a binary called adb in your Path, and not in the current directory. Therefore, if you are currently in the platform-tools directory, just call

./adb --help

The dot is your current directory, and this tells Bash to use adb from there.

Otherwise, you can add platform-tools to your PATH. by placing a line like this in your ~/.profile or ~/.bash_profile, then re-starting the Terminal.

export PATH=/Users/espireinfolabs/Desktop/soft/android-sdk-mac_x86/platform-tools/:$PATH
share|improve this answer
Thanks slhck... it worked like charm... – pankaj Sep 30 '11 at 11:12
worked wonderfully! thanks mate – noloman Mar 2 '12 at 15:28
1  
type "source .bash_profile" or open a new terminal tab after adding that line to start using it inmediately – Maragues Jan 9 at 14:56
worked for me without re-starting the terminal – bofredo Apr 26 at 15:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.