I have to copy some external files from my pc to my AVD. It seems that’s possible, specifically through the ADB using this command: > adb push "C:/_tmp_filestocopy" "/sdcard", and it’s copying right now, but at a rather slow speed, and when I say rather slow, I mean extremely slow. For example, a 50MB file cost me slightly less than 20 minutes. My question, therefore, is: is any faster method available to transfer files from PC to AVD? I’ve read somewhere that you can mount the sdcard.img from the AVD in Linux. Unfortunately, I’m running Windows. Perhaps I can try VirtualBox or VMWare now or then. Also, I’ve seen Quick ADB Pusher, but I suspect it just uses the ADB commandline, but with a GUI. Is it actually quicker, or is it just commandline behind a GUI?
I have to copy some external files from my pc to my AVD. It
Share
You can try the following:
On GNU/Linux would be much easier, since you can mount/unmount the img with one command.
Good luck!