So I created a new Android Emulator and now want to add files to the SD card. How do I do that?
-
refer this link http://stackoverflow.com/q/7358023/1021695 – KMI May 25 '12 at 11:37
4 Answers
if you are using eclipse,
1) Open the Emulator 2) In Eclipse, Select Menu => Window => Show View => Other => Android => File Explorer
It will open File Explorer Window at bottom of the screen.
In File Explorer window, on Top-right, there is push file and pull file option. Push file will push file to emulator and pull file will get the file from emulator.

- 2,071
- 19
- 24
-
ok, I did that but then I get this error: Failed to push selection: Read-only file system – user1413437 May 25 '12 at 11:56
-
In eclipse,
1) Open the Emulator 2) In Eclipse, Select Menu -> Window -> Show View -> Other -> Android -> File Explorer
It will open File Explorer Window at bottom of the screen.
In File Explorer window, on Top-right, there is push file and pull file option. Push file will push file to emulator and pull file will get the file from emulator.
File Explorer -> mnt -> sdcard
then select push button on header and push your file in android emulator.

- 515
- 2
- 6
And if you want to use the command line
adb shell
to open a shell on the phone, and then
adb push <localfile> <remotefile>

- 5,257
- 2
- 18
- 16
This will help you, it helped me, another link is also available. So check both. and tell me it helps you or not.

- 1
- 1

- 1,530
- 5
- 21
- 34