尝试使用Podfile在我的目标c项目中安装XMPPFramework

时间:2017-01-06 07:39:15

标签: objective-c xcode xmppframework

我正在尝试使用Podfile在我的目标c项目中安装XMPPFramework。我已经在我的Podfile中写了这个:

platform :ios, ‘8.0’
use_frameworks!

target ‘XMPP’ do
pod 'XMPPFramework', :git =>"https://github.com/robbiehanson/XMPPFramework.git", :branch => 'master'

end 

但是我在控制台中显示pod install此错误时收到此错误。这是控制台的图像::

enter image description here

有人可以帮助我。谢谢。

1 个答案:

答案 0 :(得分:1)

在您的pod文件中添加

  

pod'XMPPFramework'

删除,

  

pod'XMPPFramework',:git   =>“https://github.com/robbiehanson/XMPPFramework.git”,:branch => '主'

生成,

  

pod install

试试这个。希望它会对你有所帮助。