简体   繁体   中英

ADB push command android emulator

I am trying to import a python library into SL4A. From my understanding, the easiest way to do this is to import the zipped files (egg files) of the python library into the SD Card and then import it into SL4A. Since I do not have an android device yet, I am working with the emulator. Whenever I try to push the zipped folder using the adb push command, it pops out an error saying the device is not connected. How do I push zipped files into the SD Card of an emulator and then access it via SL4A ? I want to use the commands in that library in the command line in SL4A.

Thanks !

You can create your own sdcard image, put files on it and after that mount in emulator.

To create image you can use mksdcard <size> <file> : mksdcard 1024M sdcard1.iso . After that you need to mount sdcard: mount -o loop sdcard1.iso /mnt/cdrom/ . Next step: copy files, umount /mnt/cdrom/ and point to image in virtual machine properties.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM