Skip to content Skip to sidebar Skip to footer

Can't Read/write To Sdcard In Android

Can any one help in that problem when i try that code File routesRoot = Environment.getExternalStorageDirectory(); if (!routesRoot.canWrite()) System.ou

Solution 1:

Do you have this in your manifest.xml??

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

From android SDK ver 4, you have to specify this in your manifest file to give the permissions.

Solution 2:

If you are using your phone, make sure that your SD card is not mounted on your computer Check also if you are using android SDK over 1.5

Post a Comment for "Can't Read/write To Sdcard In Android"