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.
Post a Comment for "Can't Read/write To Sdcard In Android"