Xcode Pod 更新后构建错误

Xcode Build Errors After Pod Update

我刚刚更新了 pod 并尝试构建我的项目;出现以下错误:

这是我的播客文件:

# 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

知道为什么我在更新后收到此错误吗?我该如何解决?我已经做了 shift+command+K 但没有用。

更新 pod 依赖项后清理项目是一个很好的做法。 我过去在更新 cocoapods 后遇到过类似的问题。

尝试

  1. 在 Xcode 菜单中:产品 -> 清理构建文件夹 (shift+command+K)
  2. 再次构建您的项目(command+B)

我只需要将 xcode 更新到最新版本,错误就消失了。

只是因为我没有最新的xcode。所以我不得不更新我的 xcode 并更新我的 podfile 版本。之后一切都很好!