我正在使用 CocoaPods 添加两个框架。
target 'TestGoogleLib' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for TestGoogleLib
pod 'GoogleMobileVision'
pod 'GoogleSignIn'
end
但是当我运行时 - 我得到重复的错误。似乎两个框架都使用相同的文件。
我的 Pod 版本是1.5.3
duplicate symbol _OBJC_IVAR_$_MDMPasscodeCache._localAuthenticationInfo in:
ld: 13 duplicate symbols for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
如何使用 CocoaPods 安装两者而不会发生冲突——我删除了所有冲突日志——如果需要,我可以添加它们。