I am bulding my app in xcode 7, and get the following error:
ld: library not found for -lAFNetworking clang: error: linker command failed with exit code 1 (use -v to see invocation)
Cocoapods was used to load the necessary libraries in the app as follows:
# Uncomment this line to define a global platform for your project
platform :ios, '9.0'
target 'myapp' do
# Uncomment this line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
pod 'AFNetworking', '~> 3.0'
pod 'MBProgressHUD', '~> 0.9.2'
pod 'Reachability', '~> 3.2'
pod 'SDWebImage', '~> 3.8.1'
pod 'ZipArchive', '~> 1.4.0'
pod 'JDFTooltips', '~> 1.1'
end
what should I do?