I just upgraded Cocoapods and ran a pod install. after doing a hard clean and build I'm getting the following error:
ld: library not found for -lPods-HHRouter clang: error: linker command failed with exit code 1 (use -v to see invocation) I tried removing every reference to HHRouter and pulling the pod. It moved on to give me an error about another pod.
Here is what my podfile looks like: platform :ios, '8.0' # ignore all warnings from all pods inhibit_all_warnings! pod 'JDStatusBarNotification' pod 'HHRouter', '~> 0.1' pod 'ViewDeck', '2.2.11' pod 'IQKeyboardManager' pod 'MagicalRecord' pod 'RSKImageCropper', '1.0.0' pod 'UICollectionViewLeftAlignedLayout' pod 'FLAnimatedImage', '~> 1.0' pod 'CRToast', '~> 0.0.7' pod 'SDWebImage', '~>3.7' Am I missing anything?