Unable to add data to Android SD card on emulator

I see an SD card in a file explorer with d-rwxr-x resolution. When I tried to add a file to it, it shows Failed to click items. It does not even add very small files.

Can you guys suggest how to fix this?

+6
android sd-card
source share
2 answers

This is how you push files to the SD card. First, copy the file that you want to click into the tools directory [android-sdk-windows] / tools /. Open a command prompt, and if you don’t have a tool catalog in your path, you will need cd [drive]: \ android-sdk-windows \ tools. Then just enter this:

adb push [filename] /sdcard/[filename] 

If you want to put the file in the sdcard subdirectory, you have to create it ... you can do it in the adb shell or on a device with a file manager.

+5
source share

If you are running on Windows. This site is very useful deltafalcon.com .

+2
source share

All Articles