美文网首页
更新Pod1.0之后的问题

更新Pod1.0之后的问题

作者: 王小妞闯天涯 | 来源:发表于2017-06-09 15:00 被阅读13次

    1.The dependency `AFNetworking (~> 3.0)` is not used in any concrete target.

    修改之前

    platform:ios,'7.0'

    pod 'MJRefresh', '~> 3.1.0'

    pod 'SDWebImage', '~> 3.7.6'

    修改之后:

    platform:ios,'7.0'

    target "OrIangeSwift" do

    pod 'MJRefresh', '~> 3.1.0'

    pod 'SDWebImage', '~> 3.7.6'

    2.[!] Invalid `Podfile` file: syntax error, unexpected end-of-input, expecting keyword_end.

    结尾加上end

    修改后:

    platform:ios,'7.0'

    target "OrIangeSwift" do

    pod 'MJRefresh', '~> 3.1.0'

    pod 'SDWebImage', '~> 3.7.6'

    end

    相关文章

      网友评论

          本文标题:更新Pod1.0之后的问题

          本文链接:https://www.haomeiwen.com/subject/yicfqxtx.html