react-native-fix-fetch-blob
v1.0.0
Published
A library to help you fix react-native-fetch-blob on react-native >0.60.x
Downloads
16
Maintainers
Readme
react-native-fix-fetch-blob
A library to help you fix cocoapods installation of the react-native-fetch-blob
on react-native >0.60.x
Usage
You don't need to install this package. Add a postinstall script in your package.json and every time you will install dependencies the script will run fixing the problem.
- add postinstall script (example below);
- run
yarn install
ornpm i
; - rebuild project in Xcode;
Example package.json with postinstall script
{
"name": "ReactNativeApp",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"postinstall": "npx react-native-fix-fetch-blob"
}
}