swiftxcodecocoapodsmbprogresshudsvprogresshud

Xcode Build Errors After Pod Update


I just did a pod update and tried to build my project; getting the following errors: enter image description here

enter image description here

enter image description here

And here is my podfile:

# Uncomment the next line to define a global platform for your project

source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '10.0'

target 'changelater' do
  # Comment the next line if you don't want to use dynamic frameworks


use_frameworks!

  # Pods for changelater
    pod 'Firebase/Analytics'
    pod 'Firebase/Core'
    pod 'Firebase/Database'
    pod 'FirebaseUI/Auth'
    pod 'Firebase/Firestore'
    pod 'Firebase/Functions'
    pod 'ProgressHUD'
    pod 'Kingfisher', '~> 5.0'
    pod 'Stripe', '15.0.1'
    pod 'Alamofire'
    pod 'GooglePlaces'
    pod 'GoogleMaps'
    pod 'GooglePlacesSearchController'
    pod 'GooglePlacePicker'

end

Any idea why I am getting this error after update? and how I can fix it? I already did shift+command+K but it's not helping.


Solution

  • It was just because I didnt have the latest xcode. So I had to update my xcode and update my podfile versions. Everything was fine after that!