I'm trying to upload images to my Flamelink project from Media
menu. I add images and click UPLOAD
, then it shows Upload cancelled: Tap to retry
. Why is this happening? The internet connection that I'm using has no issues.
Asked
Active
Viewed 63 times
0

Whezer
- 101
- 1
- 7
1 Answers
0
I had the very same problem and figured out that firebase storage was not setup correctly. Go to firebase console->storage->rules and then add your rules. I use these rules (You can customize rules for flamelink resources and others):
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
match /flamelink/{allPaths=**} {
allow read;
allow write: if request.auth != null;
}
}
}

Af_Frederik
- 106
- 1
- 4