`how can we get the Actual Uri of an image using ActivityResultContracts.PickVisualMedia
I am using the compose image picker https://developer.android.com/reference/androidx/activity/result/contract/ActivityResultContracts.PickVisualMedia
val singlePhotoPickerLauncher = rememberLauncherForActivityResult( contract = ActivityResultContracts.PickVisualMedia(), onResult = { uri -> selectedImageUri = uri } )
however the uri that we get is
content://media/picker/0/com.android.providers.media.photopicker/media/123456
the actual uri should be
content://media/external/images/media/1000008373
which I want to save in the room database so that it can be used lateron
how can we get this uri using just ActivityResultContracts.PickVisualMedia