我已经使用pod添加了Braintree和其他lib。我的构建失败,因为它找不到Braintree的库。这就是我所拥有的:
ld:找不到-lBraintree的库
clang错误:链接器命令失败,退出代码为1(使用-v查看 调用)
我尝试过的事情:
.xcworkspace
代替.xcodeproj
lib.a
这就是我的项目:
我在最后一张图片中看不到-lBraintree
标记,但在此显示为-ObjC -ObjC -l"AdIdAccessLibrary" -l"Braintree" -l"DI...
为什么?
Podfile
target 'MyProject' do
pod 'Braintree', '3.9.3'
pod 'Google/Analytics', '~> 1.0.0'
pod 'GoogleIDFASupport'
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.1'
pod 'GoogleMaps'
end
target 'MyProjectTests' do
end