How can change the Android virtual device locate using Eclipse? when i create a new AVD that file store in default location(C:\Users\YOUR_USERNAME.android\avd ) so now i want to change other place.
-
1Your question is too generic, please specify more. You can manage AVDs with the SDK Manager (that you can oper from Eclipse if you want..) and you can manually find the AVDs on your HDD at `C:\Users\YOUR_USERNAME\.android\avd` – Mangusto Nov 15 '11 at 11:57
-
Look at this question: http://stackoverflow.com/questions/2841766/possible-to-change-where-android-virtual-devices-are-saved – wendigo Oct 14 '12 at 21:21
3 Answers
- Place your AVD [folder [xxx.avd]] anywhere you wish to.
- Now open the avd's ini file and correct the path of the avd there with the current location.
- AVD Manager locates AVDs from a default location. [which you can check in the AVD manager].
- Copy the edited ini file to this location.
and you are all set to go. Hope this helps you!!

- 1
can you please specify more , if you want to change the target device for running your application then you can do by going in eclipse upper browser u will find "android like image with and down arrow " click that one and you will find of the device if you have created previous and there are options to edit , new etc

- 328
- 3
- 6
- 18
The AVD manager doesn't provide an option for changing your AVD's location. I'm not sure if there's a way for changing the default path. However you can manually change your AVD's location via command line.
On the cmd line, navigate to your sdk directory's tools folder and then fire up the android tool. Should look something like..
C:\android-sdk\tools> android move avd -n your_avd -p c:\new\path\here
And don't forget that you're new path should not contain spaces.

- 198
- 1
- 9
-
1An answer is here http://stackoverflow.com/questions/2841766/possible-to-change-where-android-virtual-devices-are-saved – Mohammad Nadeem Apr 14 '14 at 12:34