My onActivityResult is not working because getBitmap is deprecated, any alternative codes to achieve this?
onActivityResult
getBitmap
here are the codes that needs to
This worked well for me in java
ImageDecoder.Source source = ImageDecoder.createSource(this.getContentResolver(), pictureUri); Bitmap bitmap = ImageDecoder.decodeBitmap(source);