Failed to push selection: file system read-only - androrid sdcard

when i try to add mp3 to my sd card i get this error

 [2013-01-23 22:49:52 - ddms] transfer error: Read-only file system
 [2013-01-23 22:49:52] Failed to push selection: Read-only file system

      

Someone tell me what the reason is.

+3


source to share


1 answer


Which solved my problem: 1.add the required permissions for mainfest

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

      



  • restart adb from DDMS point of view

  • restart eclipse.

+1


source







All Articles