我最近将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
,清理了构建,删除了派生数据,没有任何帮助。仍然出现相同的错误。 最佳答案
通过升级到CocoaPods 1.2.1.beta.1(sudo gem install cocoapods --pre
)并重新运行pod install
可以解决此问题。