react-native-fetch-blob
react-native-fetch-blob copied to clipboard
A project committed to making file access and data transfer easier, efficient for React Native developers.
I'm using RN 0.42 and notice that my app has always been terminated after entering background a few minutes. My app got terminated when: +, API request calls using RNFetchBlob...
I want to download an image and convert its content into base64 string. Here is what I did: RNFetchBlob .config({ fileCache : false, appendExt : imageExtension, }) .fetch('GET', this.props.imageUrl, {...
Hi, when i trying to upload image using RNFetchBlob to post via WebAPI. I always get file as null(zero bytes). Ios Working fine but android i could not able to...
FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':react-native-fetch-blob:processReleaseResources'. > com.android.ide.common.process.ProcessException: Failed to execute aapt AAPT: Error retrieving parent for item: No resource found...
"react-native-fetch-blob": "^0.10.8", compileSdkVersion 25 buildToolsVersion "26.0.2" I don`t know how to solve this problem.......
react-native: 0.55.3 react-native-fetch-blob:0.10.8 This problem only in ios. Show alert with massage 'Native module BlobModule is required for blob support'
version: "react-native-fetch-blob": "^0.10.8", "react-native": "^0.50", code: RNFetchBlob.config({ addAndroidDownloads : { useDownloadManager : true, title : 'damao.apk', description : 'An APK that will be installed', mime : 'application/vnd.android.package-archive', mediaScannable : true,...
RN 0.55.4 RNFetchBlob:0.10.8 when downloading a file close the network ,it will throws a Exception,like a `java.net.ProtocolException: unexpected end of stream`, but u do nothing to reject the Exception or...
``` export function createUser (user, callback) { const fs = RNFetchBlob.fs const Blob = RNFetchBlob.polyfill.Blob window.XMLHttpRequest = RNFetchBlob.polyfill.XMLHttpRequest window.Blob = Blob const mime = 'application/octet-stream'; const sessionId = new Date().getTime();...
If I want to test a module and that module includes RNFetchBlob, I get this: `react-native-fetch-blob/index.js:6 import { ^^^^^^ SyntaxError: Unexpected token import ` That's because babel-core/register don't transpire code...