Try giving amethyst permission to all files access.
Login to reply
Replies (8)
No i'm not but I will send you this.
I hope it helps.

Android Developers
Photo picker | App data and files | Android Developers

Android Developers
Access documents and other files from shared storage | App data and files | Android Developers
Stack Overflow
How to add files access permission on device android
My problem is when I am not getting files permission in the device.
Below image is showing: photos and media access are showing but files acces...
Stack Overflow
How to add Write to File Permission on Android
I want to write in a file by using the following:

 BufferedWriter buf = new BufferedWriter(new FileWriter("test2"));
 buf.write(mytext...
Yeah, that's what we have and what I tried... I will try again
As far as I see amethyst has no media permissions at all.
I thought that's what all file access was?
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?