[flutter] CocoaPods's specs repository is too out-of-date 오류 해결 방법
플러터에서 CocoaPods's specs repository is too out-of-date 오류 해결하는 방법
플러터를 개발하다가 다음과 같은 오류를 마주하게 되었을 때 해결했던 방법입니다.
Error: CocoaPods's specs repository is too out-of-date to satisfy dependencies.
To update the CocoaPods specs, run:
pod repo update
해결 방법
1. /ios/Podfile.lock 파일을 삭제한다.
2. /ios 위치에서 (=> cd ios) pod install --repo-update 명령어를 실행한다.
3. 프로젝트 루트 위치에서 flutter clean 명령어를 실행한다.
4. 프로젝트는 다시 실행한다. (flutter run)
이 방법이 완벽한 해결책은 아니지만, 저의 경우 도움이 되었기 때문에 공유해봅니다. 조금이나마 도움이 되었다면 좋겠습니다. 간략한 팁이지만 읽어주셔서 감사합니다~😊
반응형
'주제 > flutter' 카테고리의 다른 글
[flutter] 사용자에게 보이는 앱 이름 바꾸는 방법 (0) | 2023.03.17 |
---|---|
[flutter] 시뮬레이터 화면에서 디버깅 모드 배너 끄는 방법 (0) | 2023.03.17 |
[flutter] 사용자 기기의 글자 크기 무시하는 방법 (0) | 2022.12.02 |
[flutter] 안드로이드 apk 파일 생성하는 방법 (0) | 2022.10.28 |
[flutter] map에서 항목을 제거하는 방법 (2) | 2022.10.05 |