我正在尝试使用Podfile在我的目标c项目中安装XMPPFramework。我已经在我的Podfile中写了这个:
platform :ios, ‘8.0’
use_frameworks!
target ‘XMPP’ do
pod 'XMPPFramework', :git =>"https://github.com/robbiehanson/XMPPFramework.git", :branch => 'master'
end
但是我在控制台中显示pod install
此错误时收到此错误。这是控制台的图像::
有人可以帮助我。谢谢。
答案 0 :(得分:1)
在您的pod文件中添加
pod'XMPPFramework'
删除,
pod'XMPPFramework',:git =>“https://github.com/robbiehanson/XMPPFramework.git”,:branch => '主'
生成,强>
pod install
试试这个。希望它会对你有所帮助。