问题
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.
来源:https://stackoverflow.com/questions/41501121/trying-to-install-xmppframework-in-my-objective-c-project-using-podfile