readMediaVideo constant

AndroidPermissionDef const readMediaVideo

android.permission.READ_MEDIA_VIDEO

Required to read video files from external storage. Runtime permission: true Since SDK: 33 Group: videos Legacy mapping: READ_EXTERNAL_STORAGE / WRITE_EXTERNAL_STORAGE on pre-Android 13

Implementation

static const readMediaVideo = AndroidPermissionDef(
  'android.permission.READ_MEDIA_VIDEO',
  sinceSDK: 33,
  runtime: true,
  group: 'videos',
  keywords: {'video', 'playback', 'media', 'storage', 'gallery'},
  legacyKeys: {
    'android.permission.READ_EXTERNAL_STORAGE': 32,
    'android.permission.WRITE_EXTERNAL_STORAGE': 29,
  },
  docNotes: {
    'Required to read video files from external storage',
    'On Pre-Android 13 devices, this permission is mapped to READ_EXTERNAL_STORAGE and WRITE_EXTERNAL_STORAGE',
  },
);