I have just installed Android Studio 0.2.2. I want to add the SDK tools to the $PATH
, which are in this folder:
/Applications/Android\ Studio.app/sdk/tools
so that I can use them with e.g. Phonegap.
But after I add this folder to the $PATH
, it still keeps saying:
android: command not found
Oddly, I can't run any of the executables in that folder even when I cd
to that folder and type their names.
What am I doing wrong?
It seems that newer versions of Android Studio don't come bundled with the SDK. So, /Applications/Android\ Studio.app/sdk/tools
will no longer work.
After launching the SDK Manager from Android Studio, I realized the new path is
/Users/$USER/Library/Android/sdk/tools
.
Open your ~/.bash_profile
file by issuing the command open ~/.bash_profile
on the terminal
Add the following lines to the end of that file
export PATH=/Users/$USER/Library/Android/sdk/tools:$PATH
export PATH=/Users/$USER/Library/Android/sdk/tools/bin:$PATH
export PATH=/Users/$USER/Library/Android/sdk/platform-tools:$PATH
Save and close the ~/.bash_profile
file
If you want the changes to take action on the current terminal, then source ~/.bash_profile
; otherwise, close and re-open the terminal, and the changes will take place automatically
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With