由于某些奇怪的原因,在添加不相关的pod之后,我在构建过程中收到一条错误消息,指出未找到FBSDKCorekit.h,FBSDKCopying.h和FBSDKButton.h文件。我根据我在stackoverflow上找到的建议,遵循了无数建议更改项目构建设置中的属性;但是,似乎都没有效果。
我正在使用Cocoapods,所以我尝试卸载并重新安装它以及预发布版本。我清除了pod缓存,删除了实际的pods文件夹和podfile.lock以及xcworkspace,并将pod重新安装到项目中;但是,我仍然收到错误。
我还删除了项目缓存并重建了它......
任何帮助将不胜感激
Podfile
# define a global platform for your project
platform :ios, '8.4'
# using Swift
use_frameworks!
#
source 'https://github.com/CocoaPods/Specs.git'
# disable bitcode in every sub-target
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
target 'MyApp' do
# other pods
pod ...
# Facebook
pod 'FBSDKCoreKit' , '4.9.0-beta2'//4.8 gives same issue
pod 'FBSDKLoginKit', '4.9.0-beta2'
pod 'FBSDKShareKit', '4.9.0-beta2'
# Uber(New pod added)
pod 'UberRides' //actually just realized it's just a wrapper for very simple calls
# ==============================================================
# Sets the inheritance mode for the tests target inheriting
# only the search paths
target 'MyAppTests' do
inherit! :search_paths
end
end
答案 0 :(得分:46)
更新到cocoapods 1.0.0.beta.6后发生了我的事。
接下来帮助了我:
rm -rf ~/Library/Developer/Xcode/DerivedData
答案 1 :(得分:3)
cocoapods 1.0.0 Beta版本似乎存在一些错误。 回到v0.39.0修复了错误。 您可能需要删除已安装的cocoapods最新测试版,this question应该提供帮助。
答案 2 :(得分:2)
您无需回退到v0.39.0
。
我目前有以下版本:
1. cocoapods-0.38.2
2. cocoapods-0.39.0
3. cocoapods-1.0.0.beta.2
4. cocoapods-1.0.0.beta.3
对我来说,这个问题只出现在beta.5
。
所以如果你想要1.0去beta.3
。
答案 3 :(得分:0)
Xcode 12.5 和 Cocoapods 1.10.1 在这里。
当 cocoapods 将 FBSDKCoreKit
更新到 11.0 时,我遇到了这个问题
我降级到 9.3,它又可以工作了。
pod 'FBSDKCoreKit', '~> 9.3'