Adam Katz
Adam Katz

Reputation: 6962

Pods not updating after expoKit updates to 33

When i type pod update in expoKit ios folder i get an error. I found this link https://github.com/expo/expo/issues/2148#issuecomment-416597679

So I deleted the offending modules and rebuilt. However I got another issue that

No podspec found for EXCameraInterface in `../node_modules/expo-file-system-interface/ios

I checked my node modules and indeed it was not there. I tried deleting and reinstalling node modules to no success. I then deleted EXCameraInterface and got the same issue with the next library and then the next etc.

Edit: My cocopods version is 1.7.2, tried degrading to 1.5.3 but it never helped.

Upvotes: 1

Views: 425

Answers (1)

Adam Katz
Adam Katz

Reputation: 6962

Okay I found the answer

" Remove the list of unimodules' dependencies: pod 'EXAdsAdMob', :path => "../node_modules/expo-ads-admob/ios" pod 'EXSegment', :path => "../node_modules/expo-analytics-segment/ios" pod 'EXAppAuth', :path => "../node_modules/expo-app-auth/ios" # and so on... and instead add: # Install unimodules require_relative '../node_modules/react-native-unimodules/cocoapods.rb' use_unimodules! "

It appears I cant read

Upvotes: 1

Related Questions