CocoaPods 报错 [!] The dependency `JSONModel (~> 1.2.0)` is not used in any concrete target.

  

当用CocoaPods  pod install 时出现了下面的错误时:

[!] The dependency `JSONModel (~> 1.2.0)` is not used in any concrete target. 

The dependency `MJExtension (~> 3.0.10)` is not used in any concrete target.

在创建Podfile的时候,使用下面的格式:

 

platform :ios, '7.0'

target 'text' do

pod 'JSONModel', '~> 1.2.0'

pod 'MJExtension', '~> 3.0.10'

end

里面的 'text' 需要替换为自己创建的工程名字。

 

然后执行pod install / pod update 就可以了。

posted on 2016-11-25 14:10  海呀么海浪浪。  阅读(109)  评论(0)    收藏  举报

导航