I have been trying to upload images to the new firebase storage service . It is throwing StorageException
E/StorageException: StorageException has occ
I was having the same issue. It's not storage permission problem, i just changed the Firebase Storage Rules then solved.
rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}
Above are default rules which works fine. Changing the condition may cause Exception. Please check your condition before use.