Hi Everyone, can you please help me to fix the err...
# android
a
Hi Everyone, can you please help me to fix the error, why coil not able to load it. its mimeType is video/mp4
Copy code
val mediaPath = "<content://media/external/file/252819>"


AsyncImage(
            model = mediaPath,
            contentDescription = stringResource(id = R.string.thumbnail),
            placeholder = painterResource(id = R.drawable.ic_default_thumbnail),
            error = painterResource(id = R.drawable.ic_default_thumbnail),
            modifier = Modifier
                .fillMaxWidth()
                .aspectRatio(1f),
            contentScale = ContentScale.Crop
        )