rn-fetch-blob icon indicating copy to clipboard operation
rn-fetch-blob copied to clipboard

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

Results 130 rn-fetch-blob issues
Sort by recently updated
recently updated
newest added
trafficstars

``` C:\Users\MAX\Projects\ReactNative4>npm run android > [email protected] android > react-native run-android warn Package rn-fetch-blob contains invalid configuration: "dependency.hooks" is not allowed. Please verify it's properly linked using "react-native config" command and...

``` import RNFetchBlob from 'rn-fetch-blob'; import {Platform} from 'react-native'; import {generateUuid} from './helpers'; export const saveImageBase64 = async ( base64String: string, successCallback: () => void, ) => { const fileName...

Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `[email protected]` for the project I'm working on. Here is the diff that solved...

I am using the version: rn-fetch-blob: 0.12.0, and react-native:0.68.7. Please add the iOS privacy manifest for this library. Starting May 1, Apple will require iOS submissions to the App Store...

Hi ! error One of RECEIVER_EXPORTED or RECEIVER_NOT_EXPORTED should be specified when a receiver isn't being registered exclusively for system broadcasts ![image](https://github.com/joltup/rn-fetch-blob/assets/112697148/7da7078d-29f3-4f8f-83b4-a1790516dd52) ![Screenshot_1](https://github.com/joltup/rn-fetch-blob/assets/112697148/6206971b-dc68-4626-8579-6ee395c1c592)

HI, I am working on react-native new version, I have implement the html converter to pdf and got the base64 data. I have tried to download file in my Download...

Add Privacy Manifest for Disk space APIs usage.

If you attempt to download a file that is larger than ~2 GB on Android you won't receive any progress updates. The fix in this case is simply hard coding...

Getting an error when building: "node_modules\rn-fetch-blob\android\src\main\java\com\RNFetchBlob\RNFetchBlobReq.java:741: Error: Value must be ? 0 but getColumnIndex can be -1 [Range] int statusCode = c.getInt(c.getColumnIndex(DownloadManager.COLUMN_STATUS));" my versions: "rn-fetch-blob": "^0.12.0" "react": "18.2.0", "react-native": "0.72.4",

I saw notes to use this syntax for chunked upload of a file. RNFetchBlob.fetch('POST', 'http://example.com/upload', { 'Transfer-Encoding' : 'Chunked' }, bodyData) We will be uploading a video via an API...