Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are Android Emulator Image Stored?

On the emulator, I downloaded an image from Google. I can find the image on the emulator, but I have no idea what the file location of the image is. To debug my app I need to know where that image is. How can I get the full path of the image?

like image 677
Get Off My Lawn Avatar asked Oct 26 '12 23:10

Get Off My Lawn


Video Answer


2 Answers

The system images are downloaded in [ {android_version_home_dir}/sdk/system-images/{android-version-number}/system.img> ]

and the avd are created in C:\Users\.android\avd\ (windows) or ~/.android/avd/ (linux/mac)

like image 20
Jerome Avatar answered Sep 21 '22 20:09

Jerome


From the AVD documentation:

By default, the android tool creates the AVD directory inside ~/.android/avd/ (on Linux/Mac), C:\Documents and Settings\<user>\.android\ on Windows XP, and C:\Users\<user>\.android\ on Windows 7 and Vista.

Update (2020-02-22): This wording isn’t on the current documentation page anymore, but the location appears to be the same (C:\Users\<user>\.android\) on Windows 8 and 10.

like image 108
nneonneo Avatar answered Sep 18 '22 20:09

nneonneo