Starting with Android 14, READ_EXTERNAL_STORAGE
is replaced by READ_MEDIA_*
for media files. For non-media files, use the Storage Access Framework (SAF) or request MANAGE_EXTERNAL_STORAGE
. Add it to your manifest and guide users to enable it via Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION
. Note: Google Play restricts MANAGE_EXTERNAL_STORAGE
.
1 Like