gpt4 book ai didi

xcode7 - 使用 Cocoapods 找到的 FBSDKCorekit.h、FBSDKCopying.h 文件注释

转载 作者:行者123 更新时间:2023-12-03 15:07:13 25 4
gpt4 key购买 nike

由于一些奇怪的原因,在添加了一个不相关的 pod 后,我在构建过程中收到一条错误消息,表明找不到 FBSDKCorekit.h、FBSDKCopying.h 和 FBSDKButton.h 文件。我遵循了无数的建议,根据我在 stackoverflow 上找到的建议更改项目build设置中的属性;然而,似乎没有一个工作。

我正在使用 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

最佳答案

更新到 cocoapods 1.0.0.beta.6 后发生在我身上

接下来对我有帮助:

  • Xcode -> 产品 -> 清洁
  • Xcode -> 产品 -> ⌥ + 清洁
  • 关闭 Xcode
  • rm -rf ~/Library/Developer/Xcode/DerivedData
  • 打开 Xcode 并构建(无需重新安装 pod)
  • 关于xcode7 - 使用 Cocoapods 找到的 FBSDKCorekit.h、FBSDKCopying.h 文件注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34764943/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com