'Unable to resolve module react-native-blob-util
I'm facing this issue , when we run yarn IOS project - it is building successfully and and installing on simulator ,
while loading, metro bundler stops at some point and throws below error.
Tried below steps also, no luck.
- Clear watchman watches: watchman watch-del-all
- Delete node_modules: rm -rf node_modules and run yarn install
- Reset Metro's cache: yarn start --reset-cache
- Remove the cache: rm -rf /tmp/metro-*
Please lete me know how i can resolve this issue.
env : MacBook Pro M1 , RN version - 0.61.5 , Xcode - 13
Solution 1:[1]
Try installing the missing dependency:
Using npm
npm install react-native-blob-util --save
or using yarn:
yarn add react-native-blob-util
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Nico Zhu - MSFT |