sudo gem uninstall cocoapods brew link --overwrite --dry-run cocoapods brew install cocoapods brew link --overwrite cocoapods android studio 재시작... 메뉴에서 invalidate 해서 캐시 날리면서 재시작해도 좋아보인다. 아마 ruby gem 으로 설치되어 있는 기본 cocoapods 의 링크가 깨어지거나 한 듯 보인다. brew 의 cocoapods 가 더 나은 듯 보인다. 이전에는 ruby gem cocoapods 의 경우 오래된 맥북 프로에서는 최신 버전의 cocoapods 가 설치가 되지 않는 문제도 있었다. 그래서 brew 로 cocoapods 를 사용하는 것이 좋아 보인다.
pod 를 업그레이드 후에 pod install 시에 다음과 같은 경고 문구를 만날 수 있다. [!] Your project does not explicitly specify the CocoaPods master specs repo. Since CDN is now used as the default, you may safely remove it from your repos directory via `pod repo remove master`. To suppress this warning please add `warn_for_unused_master_specs_repo => false` to your Podfile. 이 이슈와 연관이 있다. git 기반의 MasterSource 대신 CDN 기반의 Trun..