Question / Problem - How to create sd card in a android emulator.

mrm_code

Administrator
Staff member
Question / Problem:
How to create sd card in a android emulator.

Answer / Solution:

1. Go to folder names emulator.
2. create and .img file like this.

Code:
./mksdcard -l mylabel 1024M sdcard.img
3. Now you can run the Emulator with this command or make a .bat file

Code:
emulator -avd emulator-name -sdcard sdcard.img
 
Top