can't create a folder in external storage on android device

前端 未结 2 582
灰色年华
灰色年华 2020-12-19 21:18

I am trying to create a folder in external storage and I followed a couple of other threads here. However, even though I seem to be doing what they indicate, creation fails.

相关标签:
2条回答
  • 2020-12-19 21:49
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.mydev.mobile.Test"
    android:versionCode="1"
    android:versionName="1.0" >
        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    ...
    ....
    </manifest>
    
    0 讨论(0)
  • 2020-12-19 21:50

    Give the

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

    out side the < application > tag

    0 讨论(0)
提交回复
热议问题