Podfile 新格式
24 Jul 2016老的Podfile格式install时提示如下错误:
The dependency AFNetworking (~> 2.6) is not used in any concrete target
官方推荐新格式:
platform :ios, '8.0'
target 'MyApp' do
pod 'AFNetworking', '~> 2.6'
end
老的Podfile格式install时提示如下错误:
The dependency AFNetworking (~> 2.6) is not used in any concrete target
官方推荐新格式:
platform :ios, '8.0'
target 'MyApp' do
pod 'AFNetworking', '~> 2.6'
end