Here is the code snippet to clear CocoaPods cache then re-download and reinstall all pods.
rm -rf “${HOME}/Library/Caches/CocoaPods“
rm -rf “`pwd`/Pods/“
pod update
Here is the code snippet to clear CocoaPods cache then re-download and reinstall all pods.
rm -rf “${HOME}/Library/Caches/CocoaPods“
rm -rf “`pwd`/Pods/“
pod update
Leave a Reply