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.
So the answer is simple, thanks to @wilkas help in the comments. I just forgot to add the photoURI into filepath.putFile(photoURI), it was just filepath.putFile(uri), so the addition of code simply did nothing until I notices this. Hope this Q&A will help someone else with a similar problem!