Trying to install XMPPFramework in my objective c

2019-09-11 10:15发布

问题:

I am trying to install XMPPFramework in my objective c Project using Podfile.I had write this in my Podfile:

platform :ios, ‘8.0’
use_frameworks!

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

end 

But I am getting this Error while pod install this error is show in console.This is the image of console::

Can some one please Help me.Thanks.

回答1:

Add this in your pod file,

pod 'XMPPFramework'

Remove ,

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

Run,

pod install

Try this. Hope it will help you.