So I\'ve got a problem, previously mentioned in the question I\'ve asked: Uploading image (ACTION_IMAGE_CAPTURE) to Firebase storage
I\'ve searched for the issue a b
Try changing mCurrentPhotoPath = image.getAbsolutePath(); to mCurrentPhotoPath = "file:" + image.getAbsolutePath();. I didnt spot any other differences from my code, which has worked.
mCurrentPhotoPath = image.getAbsolutePath();
mCurrentPhotoPath = "file:" + image.getAbsolutePath();