Reputation: 31
trying to install Microsoft Appcenter for react-native iOS. I got this error:
We couldn’t find any issues matching 'No such file or directory @ rb_sysopen - /Users/userName/Documents/Repo/bookombo-app-new/ios/Pods/Local Podspecs/appcenter.podspec.json' in CocoaPods/CocoaPods' after running Pod install since Updating react-native to 0.60.
"appcenter": "2.4.0",
"react-native": "0.60.6",
Upvotes: 3
Views: 2197
Reputation: 10858
Run the following cmds
yarn remove appcenter appcenter-crashes
cd ios && pod install && cd ..
yarn add appcenter appcenter-crashes
cd ios && pod install && cd ..
Upvotes: 1
Reputation: 11
I solved this by making appcenter-pre-build.sh and only adding these two lines
gem uninstall cocoapods
gem install cocoapods -v 1.7.5
Upvotes: 1
Reputation: 31
Updating cocoapods to the latest version (in my case1.8) solved the problem for me :)
Upvotes: 0