the 'pod update' command does not update the pod to your latest changes in the master branch for swift 4.2
I can see a commit 2 days ago apparently incorporated the changes for xcode-10 but the issue is still there. Is there something specific we need to do to get the library working with the new version of xcode.
Edit: The code is already there in the repo with corrections. Not sure where the problem is.
I tried removing the kingfisher pod and added it again but the problem stays the same. Cleaning the pod cash also does not work.
i found a workaround
pod 'Kingfisher', :git => 'https://github.com/onevcat/Kingfisher.git'
in the podfile redownloads everything directly from git. And so you get the latest version
You need to do a pod repo update to update your local spec repo before you try to install/upgrade any pod in your project.
Most helpful comment
I can see a commit 2 days ago apparently incorporated the changes for xcode-10 but the issue is still there. Is there something specific we need to do to get the library working with the new version of xcode.
Edit: The code is already there in the repo with corrections. Not sure where the problem is.