Programming Tutorials

Comment on Tutorial - Reading and Writing a file to SD card sample program in Android By Ashley



Comment Added by : Ashley

Comment Added at : 2011-07-21 02:47:49

Comment on Tutorial : Reading and Writing a file to SD card sample program in Android By Ashley
In your AndroidManifest.xml file you will have to provide the permision (android.permission.WRITE_EXTERNAL_STORAGE)

Eg.

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


View Tutorial