React Native: 0.60.5
Platform: iOS
I have upgraded from react-native-fetch-blob to [email protected].

The build fails with linker error:
ld: library not found for -lRNFetchBlob
clang: error: linker command failed with exit code 1 (use -v to see invocation)
To figure out the root cause of the problem, i decided to remove fetch-blob package.
So I removed rn-fetch-blob and react-native-cached-image which was internally using react-native-fetch-blob.
I have also unlinked rn-fetch-blob, removed it from package.json, have deleted node_modules, did yarn install.
Cleaned the build folder in XCode but still the build fails with lRNFetchBlob not found.
I have even checked node_modules folder there is no rn-fetch-blob present but still xcode is trying to link this package. What else could I be missing?
Issue was that RNFetchBlob.a was present in Build phases -> linked libraries. After removing it from there rn-fetch-blob started working.
Most helpful comment
Issue was that RNFetchBlob.a was present in Build phases -> linked libraries. After removing it from there rn-fetch-blob started working.