6

Is there any possibility for storing files in Android Emulator by default and without using any commands?

mkj
  • 2,761
  • 5
  • 24
  • 28

7 Answers7

4

you can see PUSH & PULL buttom in red cirle of below image..

using PULL you can pull file from device and using PUSH you can push file onto the device

enter image description here

Niranj Patel
  • 32,980
  • 10
  • 97
  • 133
2

use adb shell method. Give this command

adb push filename.extension /your destination

Hope this helpful to you.

user948480
  • 36
  • 2
1
adb push filename.extension /your storing location/

First root your adb from Command Prompt. And, give this command. This can be used to push the files on to emulator's storage area.

Pattabi Raman
  • 5,814
  • 10
  • 39
  • 60
0

If you have problems saving a file to the sdcard folder e.g. you have only read rights then try to set the size of the emulator SD Card. In eclipse: Folder Window -> AVD Manager -> TestDevice (your emulator) -> Edit... ->SD Card ->Size

SJX
  • 1,071
  • 14
  • 15
0

On Android Studio 4.0 and above you can select Device File Explorer then select sdcard folder. Select a folder you want to save your files to, then right click and select upload. To download content from emulator select the folder or file and click save as option.

Njeru Cyrus
  • 1,753
  • 21
  • 22
0

You can push a file onto the emulator's SD card. To achieve this open the DDMS, select the emulator inside the list of devices, then select Device in the main menu, select File Explorer. In the opened window select sdcard in the dropdown list and click the icon Push file onto Device. Then you have to just select the file to push. Hope this helps.

Egor
  • 39,695
  • 10
  • 113
  • 130
0

Run project >> goto DDMS>> Click File Explorer >> data >> data >> "your package" >> click on package then >> push >> select file >> ok >>restart emulator >> show in emulator

You can show here ::

enter image description here

Nikunj Patel
  • 21,853
  • 23
  • 89
  • 133