I am trying to develop for android and I want to add the adb
to my PATH
so that I can launch it really easily. I have added directories before by f
In your terminal, navigate to home directory
cd
create file .bash_profile
touch .bash_profile
open file with TextEdit
open -e .bash_profile
insert line into TextEdit
export PATH=$PATH:/Users/username/Library/Android/sdk/platform-tools/
save file and reload file
source ~/.bash_profile is very important check if adb was set into path
adb version
It should be fine now.