I\'ve been diving into Android development for a while, and now I want to use some project (helpshift) in my app. On the website they have some example apps in which the rea
Update the path.
Open the Terminal program from Spotlight. Run the following command:
touch ~/.bash_profile; open ~/.bash_profile
Then save following code
export PATH=${PATH}:/android-sdk-macosx/platform-tools:/Development/android-sdk-macosx/tools
For my case, path is
export PATH=/Users//Development/android-sdk-macosx/platform-tools:/Users//Development/android-sdk-macosx/tools:$PATH
Save the file and quit the text editor. Execute your .bash_profile to update your PATH:
source ~/.bash_profile
Then run adb.