5

大家

我遇到的问题是我无法编译我的应用程序,因为我收到以下错误:

ld: library not found for -lBolts
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我将 XCode 项目配置为使用 cocoapods,这是我的 pod 列表:

pod 'Google/Analytics', '~> 1.0.0'
pod 'AFNetworking', '~> 2.0'
pod 'XCDYouTubeKit', '~> 2.4.0'
pod 'FBSDKCoreKit'
pod 'FBSDKShareKit'
pod 'FBSDKLoginKit'
pod 'Parse'
pod 'ParseUI'
pod 'ParseFacebookUtilsV4'
pod 'ParseTwitterUtils'

这是命令的输出pod install

Updating local specs repositories
Analyzing dependencies
Downloading dependencies
Installing AFNetworking (2.6.3)
Installing Bolts (1.5.0)
Installing FBSDKCoreKit (4.8.0)
Installing FBSDKLoginKit (4.8.0)
Installing FBSDKShareKit (4.8.0)
Installing Google (1.0.7)
Installing GoogleAnalytics (3.14.0)
Installing GoogleNetworkingUtilities (1.0.0)
Installing GoogleSymbolUtilities (1.0.3)
Installing GoogleUtilities (1.1.0)
Installing Parse (1.10.0)
Installing ParseFacebookUtilsV4 (1.9.1)
Installing ParseTwitterUtils (1.9.1)
Installing ParseUI (1.1.7)
Installing XCDYouTubeKit (2.4.1)
Generating Pods project
Integrating client project
Sending stats
Pod installation complete! There are 10 dependencies from the Podfile and 15 total pods installed.

我尝试过的事情:

  • 清理和重建
  • 退出 xcode,清理并重建
  • 删除所有 pod 并重新安装、清理和重建
4

5 回答 5

5

我有两个问题:

  1. 第一个问题是我正在构建我的原始YourApp.xcodeprojXcode 项目文件。

    根据react-native

    从现在开始打开YourApp.xcworkspace而不是YourApp.xcodeproj在 Xcode 中。

    所以我不得不切换到YourApp.xcworkspace由 Cocoapods 生成的新的pod init(或任何生成它的)。

  2. 项目的自述文件react-native没有提到,如果您之前已根据步骤4 将 Facebook SDK 添加到YourApp.xcodeproj's文件夹中。将 SDK 添加到Facebook SDK for iOS - 入门教程的 Xcode 项目中,那么您应该删除这些引用,因为 Cocoapods 会将 FB SDK 代码拉入文件夹,所以您不再需要单独引用 FB SDK。否则,Xcode 会尝试根据 Cocoapods 的设置和指令进行构建,但会发现 FB SDK 的二进制文件“不是”。FrameworksPodsdylib

    最终,您的Frameworks文件夹应该有唯一的libPods-YourApp.a文件。

    清理,然后构建项目。它应该工作。

于 2016-04-29T21:35:15.853 回答
2

我只是这样解决了:

  • 删除Pods文件夹和Podfile.lock
  • pod install
  • PodsXcode 的项目上,在每个 pod 目标上,设置Build Active Architecture OnlyNo
  • 清理并重新构建
于 2015-12-14T00:19:33.337 回答
0

Podfile在我的情况下,我需要使用目录中的以下命令重新安装 pod ,

pod deintegrate
pod install

然后在清除deriveddata文件夹后构建

如果它不起作用,请按照此处的答案

于 2019-10-10T11:15:27.277 回答
0

我正在集成MFSideMenu我的演示应用程序并遇到相同的错误。
我的解决方案工作如下

构建阶段 -> 将二进制文件与库链接 -> 添加新的-> 然后从工作区中选择 libXYZ.a (在我的情况下为它libMFSideMenu.a) ->添加它。清理项目并再次构建

于 2017-01-11T07:59:36.980 回答
0

按照以下步骤,

  1. -l"bolts"其他链接器标志中删除 (Project -> Build Settings -> Linking -> Other Linker Flags)
  2. 有一个干净的构建

注意:如果您无法轻松找到它,您可以在 Workspace 中搜索,

在此处输入图像描述

于 2019-10-10T12:28:51.977 回答