react-native-blob-util icon indicating copy to clipboard operation
react-native-blob-util copied to clipboard

A project committed to making file access and data transfer easier, efficient for React Native developers.

Results 90 react-native-blob-util issues
Sort by recently updated
recently updated
newest added

Hi We've upgraded from version 1.19.1 to 1.19.8 and started seeing this issue. when we call response.json() it goes to the catch block with the Error: ``` { nativeStackAndroid: [],...

Hi! I am using this package to download certain files, mostly pdf, from the web onto our customers devices. On iOS I am using a combination of this package and...

When I use Android media manager to download file, and then try to use `.path()` in `copyToMediaStore`, it fails. I investigated it a bit and that's what I found. 1....

Hi, I try to download file in ios but I can't see file. in Andriod everthing OK. my versions: "react-native": "^0.68.2", "react-native-blob-util": "^0.16.0", this my download function `async function handleDownload(val)...

When using the package on 0.19.1, the progress event works as expected on Android, however when using it on iOS, the 'received' value remains at 0 until the download completes,...

this ensures that the version of the JS and native iOS code matches.

if (typeof path !== 'string') { return reject(addCode('EINVAL', new TypeError('Missing argument "path" '))); } try { ReactNativeBlobUtil.exists(path, (exist, isDir) => { resolve(isDir); }); } catch (err) { reject(addCode('EUNSPECIFIED', new Error(err)));...

package version: 0.19.8; RN: 0.68.5 I'm trying to use the readStream to upload large files to my api in chunks. The api takes a chunk index and a base64 encoded...

Hi, when uploading a large amount of files using ReactNativeBlobUtil.fetch(), the memory usage will climb steadily and it will not get cleared up after each successful upload, even after the...

Our app crashes on RN 0.68.5 with [react-native-blob-util](https://github.com/RonRadtke/react-native-blob-util) v0.17.0 Our app is **not** written with new architecture so maybe it is the problem When I downgrade to [react-native-blob-util](https://github.com/RonRadtke/react-native-blob-util) v0.16.4, it...