Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to push my a file in SD Card but its showing error in console 'failed to push selection: Read-only file system'.I am using DDMS perspective in Eclipse.I generated sdcard using mksdcard command.

share|improve this question

4 Answers

up vote 4 down vote accepted

Just go to

C:\Documents and Settings\<adminstrator>\.android\avd

take 'properties' of your avd folder (there is a folder for each of the avd's)

uncheck 'Read only' -> OK

This was the only thing that worked for me.

P.S: Some of these folders might be hidden.

share|improve this answer

You need to give SDCard support to your AVD and mount the SDCard.

First go to AVD Manager and select your AVD then Click on Edit and in the Hardware add SDCard Support.

Please check this link for complete detailed step to achieve SDCard support and mounting.

You can also give a try to this command in CMD, this will remount your SDCard.

c:\android-sdk\platform-tools\>abd remount
share|improve this answer

You need to make sure you have:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

in you Android manifest.

This link might help you:

http://www.brighthub.com/mobile/google-android/articles/33240.aspx

Hope this helps!

share|improve this answer

In my case i have mistake with the slash. while specifying "Additional Emulator Command Line Options" in eclipse

Actually it should be -sdcard C:/Kamal/sdcard/emulator_sdcard

and i was putting -sdcard C:\Kamal\sdcard\emulator_sdcard

Then after restarting the Eclipse & Emulator it works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.