I am using cocoapods to import AFNetworking,
I get the following error after I try pod install
[!] Unable to satisfy the following requirements:
AFNetworking (~> 3.0)
required byPodfile
Specs satisfying the
AFNetworking (~> 3.0)
dependency were found, but they required a higher minimum deployment target.
I am using pod version 0.39.0 and the project Deployment Target is 8.0
Here is my Podfile content:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, ‘8.0’
pod 'AFNetworking’,’~>3.0’
Which is same as the requested by AFNetworking from https://github.com/AFNetworking/AFNetworking
May I have any idea about the error?