My image named "pic" under the folder contact (static string) doesn't want to load and I get an error. I have been looking for hours for a solution but I can't retrieve any pic from firebase storage.
E/StorageException: StorageException has occurred.
Object does not exist at location.
Code: -13010 HttpResult: 404
E/StorageException: { "error": { "code": 404, "message": "Not Found. Could not get object" }}
java.io.IOException: { "error": { "code": 404, "message": "Not Found. Could not get object" }}
This is the error that I get ^
private void displayContactDetails() throws IOException {
//showing the uploaded image in ImageView using the download url
runOnUiThreadUnlessDestroyed(()->{
Glide.with(this /* context */)
.using(new FirebaseImageLoader())
.load(storageRef.child(contact+"/pic"))
.into(toolbarAvatar);
});