Programming Tutorials

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



Comment Added by : Dorjoo

Comment Added at : 2012-05-18 19:00:22

Comment on Tutorial : Reading and Writing a file to SD card sample program in Android By Ashley
Hi, still having problem with 'Permission denied'...

Manifest is:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="test2.test"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="8" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" android:debuggable="true">
<activity
android:name=".Test2Activity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>


View Tutorial