0

Starting from Android 11, there are 2 levels of file access permission, i.e., "files, media, and everything" permission and "media only" permission.

What is the difference between the two, and what is excluded from the "media only" permission?

Andrew T.
  • 15,988
  • 10
  • 74
  • 123
raptorAcrylyc
  • 151
  • 1
  • 5

1 Answers1

0

Let's try to answer this question, may be with the combined experience of the community we can verify if the following is correct:

According to media store documentation there are four different media categories:

  • Images, including photographs and screenshots, which are stored in the DCIM/ and Pictures/ directories. The system adds these files to the MediaStore.Images table.
  • Videos, which are stored in the DCIM/, Movies/, and Pictures/ directories.
  • Audio files, which are stored in the Alarms/, Audiobooks/, Music/, Notifications/, Podcasts/, and Ringtones/ directories. Additionally, the system recognizes audio playlists that are in the Music/ or Movies/ directories, as well as voice recordings that are in the Recordings/ directory.
  • Downloaded files, which are stored in the Download/ directory.

To my understanding the first three media types should be included in "media only" category. Not sure about the Downloade files type.

Robert
  • 20,025
  • 6
  • 47
  • 66