zoukankan      html  css  js  c++  java
  • CocoaPods报错:The dependency `` is not used in any concrete target

    内容提要:

      podfile升级之后到最新版本,pod里的内容必须明确指出所用第三方库的target,否则会出现The dependency `` is not used in any concrete target这样的错误。

    以下从三个步骤陈述:

    1. Podfile升级

    查看pod版本:

    pod --version

    pod 升级(此时是升级到1.0.0.beta.2版本):

    sudo gem install cocoapods --pre

    2. 错误内容:

    我的Podfile的内容是:

    platform :ios, ‘7.0‘
    
    pod ‘ReactiveCocoa‘, ‘2.1.8‘
    pod ‘objectiveflickr‘, ‘2.0.4‘
    pod ‘LinqToObjectiveC‘, ‘2.0.0‘
    pod ‘SDWebImage‘, ‘3.6‘

    pod install后出现错误The dependency `` is not used in any concrete target

    pod install
    /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/universal-darwin14/rbconfig.rb:213: warning: Insecure world writable dir /Applications/Cocos/tools/ant/bin in PATH, mode 040777
    Re-creating CocoaPods due to major version update.
    Updating local specs repositories
    Analyzing dependencies
    [!] The dependency `ReactiveCocoa (= 2.1.8)` is not used in any concrete target.
    The dependency `objectiveflickr (= 2.0.4)` is not used in any concrete target.
    The dependency `LinqToObjectiveC (= 2.0.0)` is not used in any concrete target.
    The dependency `SDWebImage (= 3.6)` is not used in any concrete target.

    3. 修改方法:

    Podfile内容更改:

    platform :ios, ‘7.0‘
    
    target "RWTFlickrSearch" do
    pod ‘ReactiveCocoa‘, ‘2.1.8‘
    pod ‘objectiveflickr‘, ‘2.0.4‘
    pod ‘LinqToObjectiveC‘, ‘2.0.0‘
    pod ‘SDWebImage‘, ‘3.6‘
    end

    这样再运行pod install,就会成功了。

  • 相关阅读:
    java-以月为单位,得到一年中某一个月份的范围
    计算两个时间段相差几个月(包含相差的哪些月份)
    单个进程最大线程数
    Dell PowerEdge R720内存安装原则
    Java [parms/options] range -b 100 -c 10 -i 100 -t 300 -s 180
    PhysicalDrive
    classpath和环境变量设置
    MySQL正则表达式
    MySQL模式匹配(LIKE VS REGEXP)
    ubuntu为什么没有/etc/inittab文件? 深究ubuntu的启动流程分析
  • 原文地址:https://www.cnblogs.com/lan1x/p/5377761.html
Copyright © 2011-2022 走看看