更新Pod1.0之后的问题
2017-06-09 本文已影响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