当我安装 pod1 时,它阻止我安装 pod2,当我安装 pod2 时,它阻止我安装 pod1

When I install pod1 it prevents me from installing pod2, when I install pod2 it prevents me from installing pod1

当我安装 pod 'Firebase' 时,它阻止我安装 pod 'TwilioConversationsClient',当我 install pod 'TwilioConversationsClient' 时,它阻止我安装 pod 'Firebase'。我在终端收到“[!] 无法找到 Firebase 的规范”消息。

    podfile
-----------------------------------------------------------------------
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'

source 'https://github.com/twilio/cocoapod-specs'

target 'podname' do

pod 'TwilioConversationsClient'

  # Comment this line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!
  # Pods for podname

pod 'Firebase'
pod 'Firebase/Auth'
pod 'Firebase/Database'
pod 'Firebase/Storage'


end
-------------------------------------------------------------------

它们分开安装,而不是一起安装。请帮忙

此处为 Twilio 开发人员布道师。我认为问题在于您在添加 Twilio 规范 URL 时删除了主要的 CocoaPods 规范 URL。在当前 source 行所在的位置上方添加以下行(两者都需要):

source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/twilio/cocoapod-specs'

这应该有助于解决 Firebase pod。