December 15th, 2011, 12:42 AM
|
#4 (permalink)
|
|
Premium Member
Join Date: Oct 2011
Location: Sydney, Australia
Posts: 193
Device(s): Galaxy Nexus GSM
Thanks: 2
Thanked 37 Times in 33 Posts
|
The sdcard file created by avd won't be an archive file like a .zip file or such. It will be a "disk in a file". The file will contain the actual file-system sectors that would otherwise be on an actual SD card.
If you're using Linux, you can mount the SD card of an avd called myavd to /mnt using the loop device like so:
Code:
sudo mount -o loop -t vfat ~/.android/avd/myavd.avd/sdcard.img /mnt
If you're using Windows, well.... you're using Windows.
|
|
|
Last edited by jiminaus; December 15th, 2011 at 12:58 AM.
|
|