I am new to firebase storage. Just so I could learn it, I made a simple app that has a button and an ImageView. When I click on the button, an image (from
ImageView
(from
The issue is with your firebase storage rules. Change it to
rules_version = '2'; service firebase.storage { match /b/{bucket}/o { match /{allPaths=**} { allow read, write: if request.auth != null; } } }
Make sure the if request.auth != null
if request.auth != null