ios - Cocoapods : Library Not found -
i trying run cocoapods project , getting following error
i tried pod deintegrate
, pod install
it's still there. tried removing pod.debug.xcconfig
file project->info->configuration
, pod install
nothing.
pod.debug.xcconfig
generated pod install
contain path ${pods_root}/headers/public/attributedmarkdown
but can't find 'headers/public'
in project navigator
first line of defense: (quit xcode first, part of strategy) :
rm -rf pods/ podfile.lock ; pod install
defensive approach: verify podfile. coherent? how tools versions? happens if create new podfile pod init
? have targets expected?
drastic measure: rebuild xcworkspace entirely:
- quit xcode
- mv project.xcworkspace backup location
sudo gem install cocoapods
(get latest)rm -rf pods/ podfile.lock ; pod install
note:
notice use of rm -rf pods/ podfile.lock ; pod install
instead of pod update
.
Comments
Post a Comment