podfile升级之后到最新版本,pod里的内容必须明确指出所用
2016-09-26 本文已影响0人
雪野无尘
以下从三个步骤陈述:
1. Podfile升级
查看pod版本:
pod --version
pod 升级(此时是升级到1.0.1版本):
sudo gem install cocoapods --pre
2. 错误内容:
我的Podfile的内容是:
platform :ios, '7.0'
pod 'XMPPFramework'
end
pod install后出现错误The dependency `` is not used in any concrete target
The dependency `XMPPFramework is not used in any concrete target.
3. 修改方法:
Podfile内容更改:
platform :ios, '7.0'
target "XMPPTest" do
pod 'XMPPFramework'
end
这样再运行pod install,就会成功了。
从http://www.cnblogs.com/Xylophone/p/5112841.html转载