The dependency `AFNetworking (~> 2.5)` is not used in any concrete target The dependency `AFNetworking (~> 2.5)` is not used in any concrete target xcode xcode

The dependency `AFNetworking (~> 2.5)` is not used in any concrete target


Add:

target 'MyApp' do  pod 'AFNetworking', '~> 2.5'end

See: https://guides.cocoapods.org/using/the-podfile.html

Then run pod install from the project directory.