正在安装 Protobuf,但没有在 pod 文件中提及它

Protobuf is getting installed without mentioning it in pod file

我 运行 我的 Swift 项目遇到了一个奇怪的问题。下面是我的 pod 文件。我正在使用 Swift 3。现在当我 运行 pod install 时,我总是看到

Installing Protobuf (3.2.0)

现在我在 pod 文件中的任何地方都没有提到这个 pod。为什么要安装它?该框架会导致 Swift 3 出现 200 多个警告,而我的项目在没有它的情况下也能正常工作(我将其从方案中删除),所以只想找出它的来源并将其删除。

# platform :ios, '10.0'

target 'randomApp' do
    use_frameworks!

       pod 'Firebase'
       pod 'Firebase/Auth'
       pod 'Firebase/Database'
       pod 'Firebase/Messaging'
       pod 'Firebase/Core'
        pod 'Firebase/Storage'
        pod 'MRProgress'
        pod 'Reachability'

end

您正在使用的其他一些框架将其用作依赖项。