4

So I created a new Android Emulator and now want to add files to the SD card. How do I do that?

user1413437
  • 207
  • 2
  • 3
  • 8

4 Answers4

9

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.

Veer
  • 2,071
  • 19
  • 24
2

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.

user1208720
  • 515
  • 2
  • 6
0

And if you want to use the command line

adb shell

to open a shell on the phone, and then

adb push <localfile> <remotefile>
codemonkey
  • 5,257
  • 2
  • 18
  • 16
0

This will help you, it helped me, another link is also available. So check both. and tell me it helps you or not.

Community
  • 1
  • 1
Vikas Gupta
  • 1,530
  • 5
  • 21
  • 34