val mediaIntent = Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI)
mediaIntent.type = "image/*, video/*"
startActivityForResult(mediaIntent, REQUEST_MEDIA)
When I call this intent Google Photos shows me only images?
Try this
val mediaIntent = Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI)
mediaIntent.type = "*/*"
mediaIntent.putExtra(Intent.EXTRA_MIME_TYPES, arrayOf( "video/*","image/*"))
startActivityForResult(mediaIntent, REQUEST_MEDIA)