How to set Android PATH in Ubuntu 14.04
1. Open Terminal, run : $ sudo gedit ~/.profile
2. Append the following code to your profile
2. Append the following code to your profile
PATH = ${PATH}:/home/robi/Android/Sdk/tools
PATH = ${PATH}:/home/robi/Android/Sdk/platform-tools
Note : Change the RED text with your android installation path.
3. Click save and run another command : $ sudo gedit ~/.bashrc
4. Add the following code :
export ANDROID_HOME=/home/robi/Android/Sdk/
export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platforms-tools
5. Click Save.
Comments
Post a Comment