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

Trying to install XMPPFramework in my objective c Project using Podfile

我正在尝试在我的 objective c 项目中安装 XMPPFramework 使用 Podfile.I 在我的 Podfile 中写了这个:

platform :ios, ‘8.0’
use_frameworks!

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

end 

但我收到此错误,而 pod install 此错误显示在 console.This 是控制台的图像::

有人可以帮忙 me.Thanks。

将此添加到您的 pod 文件中,

pod 'XMPPFramework'

移除 ,

pod 'XMPPFramework', :git =>"https://github.com/robbiehanson/XMPPFramework.git", :branch => 'master'

运行,

pod install

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