Android 10: What are my options to save files on external storage into a directory called “/sdcard/my-app/”
In Android Q direct File access is disabled by default for the apps outside their private folders. Here few strategies you can use in your case: Use the manifest option requestLegacyExternalStorage to have the old behavior but it won’t work anymore with Android R, so it’s really a short term solution; Save your files using … Read more