swift Firestore 'absl/numeric/int128_have_intrinsic.inc' 文件未找到

Tyl*_*son 7 firebase swift abseil google-cloud-firestore

我最近刚刚安装了一个名为 Trigger Email 的 Firebase 扩展,它使用了 Cloud Firestore 集合。我试图将 Firestore 存储到我的 iOS 项目以使用它,但出现以下错误:

'absl/numeric/int128_have_intrinsic.inc' file not found
Run Code Online (Sandbox Code Playgroud)

Xcode 中的错误

以下是我的 podfile 的内容:

platform :ios, '10.0'

target 'FRC Lookout' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for FRC Lookout

pod 'Firebase'
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'FirebaseUI/Auth'
pod 'FirebaseUI/Google'
pod 'Firebase/Database'
pod 'Firebase/Firestore'
pod 'FirebaseFirestoreSwift'


pod 'MMDrawerController', '~> 0.5.7'
pod 'SwiftyJSON', '~> 4.0'
pod 'Alamofire'
pod 'SVProgressHUD'
pod 'SpreadsheetView'
pod 'CollapsibleTableSectionViewController', '~> 2.0.1'
pod 'JTAppleCalendar', '~> 7.0'
pod 'PageControls'
pod 'SwiftKeychainWrapper'
end
Run Code Online (Sandbox Code Playgroud)

看起来该文件确实存在,但路径错误或其他原因。

任何帮助将非常感激。

geo*_*gee 2

所以我和你有同样的问题。当然是不同的 Pod。做了一些研究...

我注意到在更新或安装 Pods 时,有一条消息说 CocoaPods 有更新。(现在是1.8.4)

所以我运行命令> gem install cocoapods

一切更新后,我的项目可以编译了!

我希望这对你有用,对其他人也一样......