Reputation: 6602
Failed to push the item(s).
(null)
This is the error I am getting while i am tried to push the media into the sd card in DDMS of my eclipse. sdk version is 2.3.1
Its inserting images fine but not .mp3 or .mp4 why..?
Thanks in advance....!
Upvotes: 2
Views: 3137
Reputation: 31
If you do not select the emulator on the list on the left, in the devices tab, it would give this error, once selected, try pushing or dragging dropping file from the explorer and it works!
Upvotes: 3
Reputation: 59168
Maybe file is too big? Alternatively you can try the adb tool that comes with SDK:
adb push local /sdcard/target
http://developer.android.com/guide/developing/tools/adb.html
Upvotes: 0
Reputation: 3800
Ensure that the directory you are trying to push into is not write protected and that the size of the file does not exceed available storage space.
Upvotes: 0