I thought that's what all file access was?
Login to reply
Replies (4)
Fron what I understand these need to be added.
```
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.MEDIA_READ_EXTERNAL"/>
<uses-permission android:name="android.permission.MEDIA_WRITE_EXTERNAL"/>
```


Kodular Community
How do you request and grant MANAGE_EXTERNAL_STORAGE?
How do you request and grant → MANAGE_EXTERNAL_STORAGE on devices with Android 11+? I am aware that this permission is usually not granted by Goo...

Kodular Community
How to request and grant MANAGE_EXTERNAL_STORAGE permission
In this guide I show you, how to request and grant → MANAGE_EXTERNAL_STORAGE on devices with Android 11+. Be aware that this permission is usuall...
I still see apps using them & haven't seen one that does stop all of a sudden.
We already do READ_EXTERNAL_STORAGE. The others are old and don't exist anymore.
From what I read they are needed to make it work. Test it out?