我在使用FireBase时遇到问题。我的构建没有问题,但是iOS10.3中的Firebase出现错误,我尝试了建议的解决方案。
rm -rf ~/Library/Developer/Xcode/DerivedData/
然后我擦除了缓存并重建了它。但是,该错误已更改。
找不到'FirebaseCore / FirebaseCore.h'文件无法构建// firebase.h
Objective-C模块“ Firebase” // Appdelegate.swift
我的Podfile
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
target 'testtest' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for DeleteMe
pod 'SwiftSVG', '~> 2.0'
pod 'Toaster'
pod 'BigInt', '~> 4.0'
pod 'CryptoSwift'
pod 'RealmSwift'
pod 'web3.swift.pod', '~> 2.2.0'
pod 'Firebase'
pod 'Firebase/Messaging'
pod 'Firebase/Auth'
pod 'Firebase/Core'
end
我擦除了Pod并尝试重建它,但是错误是相同的。
如何解决这个问题?