I am running CocoaPods to add a dependency to my project.
My pod file is located at Users/myUser/Desktop/project/project.
It looks like this:
source 'https://github.com/hackiftekhar/IQKeyboardManager.git'
pod 'IQKeyboardManager'
xcodeproj '../project.xcodeproj'
and it is named Podfile.
When I run pod install
, I get this output:
Analyzing dependencies
[!] An unexpected version directory
Categories
was encountered for the/Users/myUser/.cocoapods/repos/hackiftekhar/IQKeyboardManager
Pod in theIQKeyboardManager
repository.
What is CocoaPods expecting here and how can I fix this?
Thanks,
C
I had a similar issue:
updating to the latest version of cocoapods seemed to resolve it:
Have a look at CocoaPods issue
Hope that helps.