How to Set ANDROID_HOME Environment Variable in Ubuntu?

By Hardik Savani April 7, 2023 Category : Installation Ubuntu

In this post i want to share with you how to set android home environment variable in ubuntu os. when i fatch this issue i tired to solve this issue because when i run my app i always found following error :

The ANDROID_HOME environment variable is not set or it points to a non-existent directory.

You will not be able to perform any build-related operations for Android.

I found above error if i already install android in my ubuntu 14.04 system. But at last i found solution from my senior. First i download my android and and put that on any where that downloaded folder of android but don't forgot to get to take path of that folder like It is my android path:

/home/hari/android

My android tools and platform-tools etc are in android folder and hari is username of my system. So you can set ANDROID_HOME environment variable path this way:

export ANDROID_HOME=/home/hari/android/

export PATH=$PATH:$ANDROID_HOME:/home/hari/android/tools/

export PATH=$PATH:$ANDROID_HOME:/home/hari/android/platform-tools

After this you can also try to print that variable you can find value on ANDROID_HOME.

echo $ANDROID_HOME

Tags :
Shares