As far as I see amethyst has no media permissions at all.
Login to reply
Replies (7)
Just for specific files. Google doesn't allow broad media permissions anymore.
I thought that's what all file access was?
Yes, but they are now forcing apps to not use those things anymore. They want apps to ask for specific permissions for each file they want to access. That's what the new permission system does. There is no broad file access anymore.
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?