CocoaPods报错:The dependency `AFNetworking ` is not used in any concrete target

  • 原文链接:http://blog.csdn.net/sjl_leaf/article/details/50506057
  • The dependency ``isnot usedin any concrete targetThe dependency `AFNetworking`isnot usedin any concrete target
  • CocoaPods再遇困难,前几天电脑重装了系统,所有的开发工具就都装了最新的,当我用CocoaPods的时候,出了一个提示,大概就是我的版本不是 last version,然后给你提示了一个命令,直接复制即可,就是下面这个:

sudo gem install cocoapods --pre

安装cocoapods的预览版本,就会更新下来新的1.0.0.beta.2版本,如下所示:

Successfully installed cocoapods-1.0.0.beta.2Parsing documentation for cocoapods-1.0.0.beta.2

很高兴啊,更新了新的版本,然而pod install就出错了,悲了个剧!出错如下:

Updating local specs repositoriesAnalyzing dependencies[!] 

The dependency `FMDB (~> 2.3)`isnot usedin any concrete target.

The dependency `SDWebImage (~> 3.6)`isnot usedin any concrete target.

The dependency `AFNetworking (~> 2.3.0)`isnot usedin any concrete target.

The dependency `DACircularProgress (~> 2.2.0)`isnot usedin any concrete target.

The dependency `MBProgressHUD (~> 0.8)`isnot usedin any concrete target.

The dependency `PSTCollectionView (~> 1.2.1)`isnot usedin any concrete target.

The dependency `HPGrowingTextView (~> 1.1)`isnot usedin any concrete target.

The dependency `ProtocolBuffers (= 1.9.3)`isnot usedin any concrete target.

The dependency `leveldb-library (~> 1.18.1)`isnot usedin any concrete target.

The dependency `SCLAlertView-Objective-C (~> 0.7.5)`isnot usedin any concrete target.

The dependency `MWPhotoBrowser (~> 1.4.1)`isnot usedin any concrete target.

The dependency `MMMarkdown (~> 0.5)`isnot usedin any concrete target.

The dependency `MJExtension (~> 2.5.16)`isnot usedin any concrete target.

The dependency `MJRefresh (~> 2.4.12)`isnot usedin any concrete target.

The dependency `Masonry (~> 0.6.3)`isnot usedin any concrete target.

我用的三方库比较多,挺长的,出这个错是告诉我们我们所用的库没有指定target,它不知道用在哪里,所以就给报错了,然后我去了cocoapods的官网看了下,cocoapods官网地址


官网是这样给推荐的: 
在创建Podfile的时候,用这种格式使用,

  • platform :iOS, 
  • '8.0'#use_frameworks!个别需要用到它,比如reactiveCocoa
  • target'MyApp'do  
  • pod'AFNetworking','~> 2.6'  
  • pod'ORStackView','~> 3.0'  
  • pod'SwiftyJSON','~> 2.3'
  • end

  • 里面的 MyApp 记得替换为自己攻城里面的target。这样就基本OK了,执行pod install / pod update 就都可以了。(use_frameworks! 这个是个别需要的,这里修改一下,可以把我上面的代码中的这一行【删除】

下面是另外一种写法,

platform :ios,'8.0'

#use_frameworks!个别需要用到它,比如reactiveCocoa

def pods  

pod'AFNetworking','~> 2.6'  

pod'ORStackView','~> 3.0' 

pod'SwiftyJSON','~> 2.3'

end

target'MyApp'do 

podsend


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值