Closed alejandroivan closed 4 years ago
File UIImage+AlamofireImage.swift makes the whole module uncompilable. Basically because, on line 385, it's missing a return statement. Leaving that line like this fixes all issues:
UIImage+AlamofireImage.swift
return
return af.imageFiltered(withCoreImageFilter: name, parameters: parameters)
Looks like we missed a Swift 5 compatibility issue. Working on a release now, it should be available soon.
This should be fixed now, feel free to update to 4.0.1.
File
UIImage+AlamofireImage.swift
makes the whole module uncompilable. Basically because, on line 385, it's missing areturn
statement. Leaving that line like this fixes all issues:return af.imageFiltered(withCoreImageFilter: name, parameters: parameters)