firebase-storage-upload-example
firebase-storage-upload-example copied to clipboard
This example has moved
Have anyone same problem?
I wanted to see how everything works and play around with it but I am unable to install the example. I downloaded it and ran NPM install. After a while...
I am using SDK 31, and the code seemed to work for a while, but then, the fetch started to return a "Network request failed" error. Not sure why (since...
Hi there, I was trying this example using Expo SDK 31 and Android 5 and 7 (because SDK 31 only works with 5+) But there is an issue here: const...
When I implemented this code, I got this mistake: > [TypeError: response.blob is not a function. (In 'response.blob()', 'response.blob' is undefined)] When I debug it, if I print response, it...
then then then ;) ``` async function uploadImageAsync(uri) { console.log(uri); const response = await fetch(uri); const blob = await response.blob(); const ref = firebase .storage() .ref() .child(uuid.v4()); await ref.put(blob) .then(snapshot...
Is there some code missing in the example? When I start the expo app for this project, it shows the buttons but when you tap on either one, it shows...
Hi, Thank you for the example. I've tried to follow your sample but this line: https://github.com/expo/firebase-storage-upload-example/blob/60544016dacc8a345fa3815bffc9db0f8dfa3373/App.js#L180 raises the following error in expo SDK 28 (as well as in standalone app)...
I want to access those files throw an uri, I don't want to download it. I have to play some audio files using `Expo.Audio.Sound.create({uri: path})` so i want this path...
What if I want to store first the photo(s) taken in component state or async storage and later upload it using promise.all(). I hit this performance error > One of...