我正在安装firebase、googlesigin、twitterkit和fabric到Cocoapods的swift应用程序中。
如果我只安装Fabric,我就能够编译和运行应用程序。但是,如果我试图安装GoogleSignIn和TwitterKit,Fabric,它的安装成功了,但是,无法运行,得到以下编译器错误。
ld: framework not found FileProvider for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我的播客文件如下。
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'pod installation' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'Fabric'
pod 'TwitterKit'
pod 'Firebase/Database'
pod 'Fabric'
pod 'GoogleSignIn'
# Pods for sample pod
# Pods for pod installation
target 'pod installationTests' do
inherit! :search_paths
# Pods for testing
end
end
附上截图,任何人的帮助。我两天来一直在努力解决这个问题,非常感谢帮助我解决这个问题的人。
注意:我使用的是Xcode 8.3.2,我现在没有任何真正的设备,我的应用程序中也没有使用任何FileProvider框架。