Alamofire / AlamofireImage

AlamofireImage is an image component library for Alamofire
MIT License
3.99k stars 523 forks source link

Updated the Podspec to match 5.0.0-beta.2 tag of Alamofire #340

Closed andiradulescu closed 5 years ago

andiradulescu commented 5 years ago

Issue Link :link:

https://github.com/Alamofire/AlamofireImage/issues/336 You can't add AlamofireImage to your Project with CocoaPods when using Alamofire 5.0.0-beta.2

Goals :soccer:

Make AlamofireImage alamofire5 branch work with Alamofire 5.0.0-beta.2

Implementation Details :construction:

Fixed dependency and deployment_target to match Alamofire 5

Example of usage in Podfile 🥇

platform :ios, '10.0'
use_frameworks!

target 'TargetUsingAlamofire' do
    pod 'Alamofire', '~> 5.0.0-beta.2'
    pod 'AlamofireImage', :git => 'https://github.com/andiradulescu/AlamofireImage.git', :branch => 'alamofire5'
end