All Collections
Help & Troubleshooting Guides
Testing Your App
I can't upload an image in the app via the image upload action.
I can't upload an image in the app via the image upload action.
A
Written by Ashley
Updated over a week ago

This is a common issue that may arise due to the misconfiguration in Firebase Storage. This can be fixed by updating the Firebase Storage rules.

Here are the instructions on how to do this.

  • Head over to the Storage section in your Firebase project and click on the Rules tab.

  • Here you would need to replace the current rules with the rules given below.

rules_version = '2';
service firebase.storage{
match /b/{bucket}/o{
match /{allPaths=**}{
allow read, write: if request.auth != null;
}
}
}

This should fix the issue with uploading media in the application. If you still face this issue then please make sure to re-upload all the previously uploaded images from the application.

Did this answer your question?