I have my ADT folder at /Users/username/Development/adt-bundle-mac-x86_64-20140702/ and I am trying to set the bash_profile file to work with it because whenever I type "android" or "adb" into the terminal, it returns "-bash: android: command not found". Right now, my .bash_profile (which is stored at /Users/username/) looks like:
export PATH=$PATH:~/bin
export ANDROID_HOME=/Developer/adt-bundle-mac-x86_64-20140702/
export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
After each time I update the file to try something else, I save it and then type "source .bash_profile" into the terminal to refresh the file. Is it possible that I should be using a command?
I have gone through numerous tutorials on Stack Overflow and other sites, but none of them are working.
Thanks in advance for the help
echo $PATH? Can you invoke those tools if you specify the full pathname of the executable, or might there be a permission issue or path typo as well?nicks-mbp:~ nick$ echo $PATH /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin:/Users/nick/bin:/Developer/adt-bundle-mac-x86_64-20140702//tools:/Developer/adt-bundle-mac-x86_64-20140702//platform-tools