Categories
Mobile Development

How to Add Android SDK to path Ubuntu

So you’ve unpacked the sdk and updated and installed all the required libraries, apis and extras with:

./android sdk

Now to add all the tools and commands to your path to be accessible wherever you are:

vim ~/.bashrc

Add the following lines:


export PATH=${PATH}:~/utils/android-sdk-linux/tools
export PATH=${PATH}:~/utils/android-sdk-linux/platform-tools

Remember to restart terminal