Xcode error: Class <name> is implemented in both <path> and <path>. One of the two will be used. Which one is undefined?

Xcode error: Class <name> is implemented in both <path> and <path>. One of the two will be used. Which one is undefined?

我用 Firebase SDK's (v 8.7.0) 创建了一个 Unity 项目,我正在尝试用 Xcode 为 iOS 构建它。我正在使用 Cocoapods (v 1.11.2)Firebase SDKXcode 工作。

我构建了我的 Unity 项目并安装了 Cocoapods,它生成了要在 Xcode 中打开的 xcworkspace 文件。当我尝试 运行 已连接 iPhone 上的应用程序时,出现以下错误:

picture here.

附加信息:

我对实施第 3 方应用程序还比较陌生,因此非常感谢任何建议。

在 Podfile 中,将 use_frameworks! 更改为 use_frameworks! :linkage => :static

FirebaseAnalytics 是一个静态框架,将其链接到应用程序的动态框架会导致它被链接到应用程序两次。