Permission to read data from SD Card

前端 未结 6 485
北海茫月
北海茫月 2021-01-08 01:01

Do you need any permission to read data from an sdcard? I found the write permission but nothing for read.

6条回答
  •  情歌与酒
    2021-01-08 01:41

    If you are using android version 4.1 (Jelly Bean), you have to insert the following permission into your application's manifest file:

    READ_EXTERNAL_STORAGE
    

    http://developer.android.com/reference/android/Manifest.permission.html#READ_EXTERNAL_STORAGE

提交回复
热议问题