I have configured the AFNetworking API with the help of Cocoa Pods and now I have to configure SDWebImage. I tried to add "platform :ios, '7.0'
pod 'SDWebImage', '~>3.8'"in my existing pod file but it is not working and giving me the following error as shown in the image.
Do I need to create separate pod file? If yes then where it should be located in my project directory.
This is my existing Podfile
:
target ‘<MYAPPNAME>’
do
pod 'AFNetworking', '~> 2.5'
pod 'SDWebImage', '~>3.8'
end