V Prasad
V Prasad

Reputation: 31

In Android Studio, Create AVD at New Path (As my C drive is full)

I dont have Space in my C Drive, Hence I want to Create AVD in Android Studio in Another Drive. How can I Change setting of AVD Manager, So All my New AVDs are created at New Path-Directory

Upvotes: 1

Views: 1889

Answers (1)

TejjD
TejjD

Reputation: 2571

This has been answered before, according to @wloescher:

Add a new user environment variable (Windows 7):

  1. Start Menu > Control Panel > System > Advanced System Settings (on the left) > Environment Variables
  2. Add a new user variable (at the top) that points your home user directory:
Variable name: ANDROID_SDK_HOME Variable value: a path to
a directory of your choice AVD Manager will use this directory to
save its .android directory into it.

Original post.

If you are on a Linux system: How to set up environment variables on Linux.

If you are on a Mac: How to set up environment variables on Mac.

Upvotes: 3

Related Questions