我最近将CocoaPods添加到了我的应用中,以便使用Google Analytics。应用程序运行正常,但单元测试不再构建。尝试运行单元测试时出现以下错误:
ld: framework not found GGLAnalytics for architecture x86_64
这是我的Podfile:
target 'MyApp' do
use_frameworks!
pod 'Google/Analytics'
target 'MyAppTests' do
inherit! :search_paths
# Pods for testing
end
target 'MyAppUITests' do
inherit! :search_paths
# Pods for testing
end
end
我尝试将pod 'Google/Analytics'
放在测试目标中,然后运行pod install
和pod update
,清理构建,删除派生数据,没有任何帮助。仍然得到同样的错误。
答案 0 :(得分:2)
通过升级到CocoaPods 1.2.1.beta.1(sudo gem install cocoapods --pre
)并重新运行pod install
来解决此问题。