5

我正在尝试在我的 iPhone 应用程序中安装 admobs(用objective-c 编写)。我已经使用 swift 项目多次实现了这一点,但目前我不断收到以下构建错误:

ld: warning: directory not found for option '-L/Users/charlieseligman/Library/Developer/Xcode/DerivedData/ThamesClippers-csissodainpbbjenykdyxuutzxtg/Build/Products/Debug-iphonesimulator/GoogleToolboxForMac'
ld: warning: directory not found for option '-L/Users/charlieseligman/Documents/GIT/iOS.ThamesClippers/build/Debug-iphoneos/GoogleToolboxForMac'
ld: library not found for -lGoogleToolboxForMac
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我肯定会打开 .xcworkspace 文件(而不是 .xcodeproj 文件)。

我还尝试删除“DerivedData”文件夹内容和“清理”项目并执行“清理构建文件夹”。没有人解决了这个问题。

我的 podfile 仅包含以下 pod:

# Pods for ThamesClippers
pod 'Google/Analytics'
pod 'Firebase/Core'
pod 'Firebase/AdMob'

# Trying to fix GoogleToolboxForMac missing error
pod 'Firebase/Messaging'
pod 'GoogleToolboxForMac/Logger' 
pod 'GoogleToolboxForMac', '~> 2.1'

我曾尝试一一添加底部的 3 个,但一直收到相同的构建错误。

任何人都可以帮忙吗?在这一点上完全失去了。看到这两个问题,但他们接受的解决方案并没有解决这个问题:

找不到框架 GoogleToolboxForMac ld:找不到 -lGoogleToolboxForMac 的库

4

2 回答 2

19

最后解决了一个问题:

  1. Xcode > 产品 > 方案 > 管理方案
  2. 选择“显示”失败的方案 (GoogleToolboxForMac)
  3. 在下拉菜单中选择此方案,就在“停止”按钮的右侧
  4. 建立这个方案
  5. 然后选择原始方案(在步骤 3 中提到的下拉菜单中)并重建

所有构建正确。

所以看起来我必须手动构建单独的方案。

注意:要自动构建这些,请使用 Product > Scheme > 'Edit Scheme' > Build > 并确保在底部添加了所有目标以及您的项目目标。

于 2016-12-05T14:58:13.957 回答
0

我在 Xcode 10 中构建到Simulator. 这是因为我在尝试解决 Cocoapods 警告时 删除了Debug基本配置:xcodeproj"CocoaPods did not set the base configuration of your project because your project already has a custom config set."

我通过以下方式解决了这个问题:

  1. 添加Debug基础配置
  2. Debug配置值设置为None
  3. 跑步pod install

这是第 3 步之后基本配置的样子: Xcodeproj 配置] 1

于 2018-08-12T02:11:59.713 回答