Answers for "android studio change avd location"

1

android studio change avd location

I did this in Windows 10:
	1. Open Control Panel
	2. Then go to System and Security
	3. Then go to System
	4. Then go to Advanced system settings
	5. Then go to Change Environment Variables of the User
	6. Then click create a new environment variables
	7. Create a new variable named ANDROID_AVD_HOME
	8. Set its value to your Android directory, like D:\Android\AVD
Posted by: Guest on October-16-2021
1

save android studio home bash_profile

nano ~/.bash_profile 

export ANDROID_HOME=/YOUR_PATH_TO/android-sdk
export PATH=$ANDROID_HOME/platform-tools:$PATH
export PATH=$ANDROID_HOME/tools:$PATH

source ~/.bash_profile
echo $ANDROID_HOME
Posted by: Guest on March-04-2020

Code answers related to "android studio change avd location"

Browse Popular Code Answers by Language