Vignesh_in6
Vignesh_in6
Overload resolution ambiguity all this function match fun LiveData.map(mapper: (T?) -> R?): LiveData = createMediator(this, MapExt(mapper)) fun SupportMediatorLiveData.map(mapper: (T) -> R): SupportMediatorLiveData = createMediator(this, MapExt({ return@MapExt mapper(it!!)!! })) Shows error...
I am trying to convert uri to bitmap using ``` val result = CropImage.getActivityResult(data) val selectedImage = result.uri val source = ImageDecoder.createSource(this.contentResolver, selectedImage) val temp = ImageDecoder.decodeBitmap(source) ``` and i...