Trying to install XMPPFramework in my objective c Project using Podfile

516 Views Asked by At

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::

enter image description here

Can some one please Help me.Thanks.

1

There are 1 best solutions below

2
On BEST ANSWER

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.