Unable to retrieve image's download URL from Firebase Storage (getting exception) [NEED URGENT HELP]
问题 The code successfully uploads an image to Firebase Storage but doesn't give back the download URL. How can I fix this? I get this exception: java.lang.IllegalArgumentException: getDownloadUrl() is not supported at the root of the bucket. Why? private void uploadFile() { if (mImageUri != null) { StorageReference fileReference = mStorageRef.child(System.currentTimeMillis() + "." + getFileExtension(mImageUri)); fileReference.putFile(mImageUri).continueWithTask(new Continuation<UploadTask