由于一些奇怪的原因,在添加了一个不相关的 pod 之后,我在构建过程中收到了一条错误消息,指出找不到 FBSDKCorekit.h、FBSDKCopying.h 和 FBSDKButton.h 文件。根据我在 stackoverflow 上找到的建议,我遵循了无数建议更改项目构建设置中的属性;然而,似乎没有一个工作。
我正在使用 Cocoapods,所以我尝试卸载并重新安装它以及预发布版本。我清除了 pod 缓存并删除了实际的 pods 文件夹和 podfile.lock 以及 xcworkspace 并将 pod 重新安装到项目中;但是,我仍然收到错误。
我还删除了项目缓存并重建了它......
任何援助将不胜感激
播客文件
# 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