Pod更新后的Xcode构建错误

问题描述 投票:0回答:1

我只是做了一个pod更新,并试图构建我的项目;出现以下错误:enter image description here

enter image description here

enter image description here

这是我的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

任何想法,为什么更新后出现此错误?以及我该如何解决?

swift xcode cocoapods mbprogresshud svprogresshud
1个回答
0
投票

在更新pod依赖项之后,清理项目是一个好习惯。更新cocoapods之后,我过去也遇到过类似的问题。

尝试

  1. 在Xcode菜单中:产品->清理构建文件夹(shift + command + K)
  2. 再次构建项目(命令+ B)
© www.soinside.com 2019 - 2024. All rights reserved.