Replies: 1 comment 2 replies
-
Hi there!
Please open a fresh issue, with a reproduction of the problem that fits in a clean / small App.js we can drop in a sample project (like that from https://github.com/mikehardy/rnfbdemo/blob/master/make-demo.sh), filling in template details Thank you |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi guys,
I am trying to make an upload image with Firebase storage.
While uploading, it works on an Android device but I get an error on the emulator. It is important for me that the emulator also works. Can you help?
Error and main manifest
`
Error and debug manifest
`
Last one My upload function
saveItem = async () => { const imageInfo = this.state.setImageSource; try { console.log(imageInfo.fileName); console.log(imageInfo.uri); await storage().ref(imageInfo.fileName).putFile(imageInfo.uri); console.log("Yüklendi"); Alert.alert("Başarılı"); } catch (e) { console.log(e) } }
Beta Was this translation helpful? Give feedback.
All reactions