Trying to install XMPPFramework in my objective c Project using Podfile

风流意气都作罢 提交于 2020-01-25 08:23:06

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!