Ben Hsieh
Ben Hsieh
I'm not sure but, according to [this issue](https://github.com/facebook/react-native/issues/854), it seems `Blob` objects does not have correct functionality in react native ?
Hi @funkysoul , I think this may related to Firebase SDK's version, and we are still [try to find where's the problem](https://github.com/wkh237/react-native-fetch-blob/issues/179). You may try use Firebase 3.4.1 and see...
Thanks for the great information, I think that really helpful !
There's a new release of `react-native-fetch-blob`, please try upgrade the package to `0.10.1-beta.1` and see if that fix the issue 👍
@MrRoyce , try to remove `file:` prefix and see if it works correctly, thank you 😄
Did you `close` the blob after upload ? If you create a `Blob` instance from exsiting file path, the file will be removed when `blob.close()` invoked, see document. I think...
@MrRoyce , thanks for your advices. I think you're right, I'll add these information to the document. As for the strange behavior about after the deleted files, I'd like to...