Unable to find a specification for `React-Core` depended upon by `rn-fetch-blob`
See original GitHub issueI got the following error after the following command:
pod install
[!] Unable to find a specification for
React-Core
depended upon byrn-fetch-blob
You have either:
- out-of-date source repos which you can update with
pod repo update
or withpod install --repo-update
.- mistyped the name or version.
- not added the source repo that hosts the Podspec to your Podfile.
Note: as of CocoaPods 1.0,
pod repo update
does not happen onpod install
by default.
Versions: “react-native”: “0.59.5”, “rn-fetch-blob”: “^0.10.16”,
Podfile:
...
pod 'rn-fetch-blob', :path => '../node_modules/rn-fetch-blob'
...
What Am I doing wrong? Is it an issue related to the version of the library?
Thanks
Issue Analytics
- State:
- Created 4 years ago
- Reactions:12
- Comments:23
Top Results From Across the Web
Unable to find a specification for `React-Core` depended upon ...
Unable to find a specification for `React -RCTFabric` depended upon by `RNSVG`. I resolve this by enabling flag fabric_enabled in Podfile
Read more >Updating iOS from React Native 0.59.x to 0.6x.x
In our project, we use 1. Firebase 2. Sentry 3. AsyncStorage 4. RNVectorIcons 5. Safariview and a few common ones. Because of the...
Read more >Unable to find a specification for `React-Core` depended upon ...
Coding example for the question Unable to find a specification for `React-Core` depended upon by `UMReactNativeAdapter`
Read more >Unable to find a specification for `React-Core` depended upon ...
Hello, I'm getting this error when trying to instal dependencies on ios folder via pod install: [!] Unable to find a specification for...
Read more >ios/Podfile.lock · master · RocketChat / Rocket.Chat.ReactNative
ReactCommon /turbomodule/core (= 0.68.2) ... React-Core/RCTWebSocket (= 0.68.2) ... rn-fetch-blob (0.12.0):. 491. - React-Core.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
change your package.json from
"rn-fetch-blob": "^0.10.15"
to"rn-fetch-blob": "0.10.15"
, clean node_modules and npm install againIn rn-fetch-blob.podspec file,update here
s.dependency 'React-Core'
change ‘-’ to ‘/’