react-native-meens-fetch-blob
v0.0.1
Published
A module provides upload, download, and files access API. Supports file stream read/write for process large files.
Downloads
6
Maintainers
Readme
react-native-meens-fetch-blob
for both Android (Classic and Native), iOS and Windows
Installation
npm install react-native-meens-fetch-blob
Android CONFIG NEW
android settings
path: \android\settings.gradle
include ':react-native-meens-fetch-blob'
project(':react-native-meens-fetch-blob').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-meens-fetch-blob/android')
app settings
path: \android\app\build.gradle
dependencies {
....
implementation project(':react-native-meens-fetch-blob')
....
}
MainApplication
file: MainApplication.java
Add Package:
import com.RNFetchBlob.RNFetchBlobPackage;
Add:
protected List<ReactPackage> getPackages() {
.........
new RNFetchBlobPackage();
......
return packages;
}