본문 바로가기
Flutter

[Flutter - error] CocoaPods error

by kage2k 2021. 9. 7.
728x90
반응형

flutter 로 어플 개발을 하다가 보면 firebase auth , firebase core의 팩키지를 import하면, 
에러가 나는 경우가 발생합니다. 이에 해당 에러발생해결방법을 알아보려합니다. 

Terminal에서 flutter doctor -v를 하여서 CocoaPods  설치 유무를 확인합니다. 

CocoaPods 설치 되어있습니다. 버전은 1.10.1

설치는 되어있는데 무슨이유인지, 빌드하면 에러나는 경우 삭제하고 다시 설치를 권합니다. 

.

728x90

.

삭제 및 설치


1. Cocoapods 현재버전을 언인스톨
sudo gem uninstall cocoapods

2. 1.7.5버전 인스톨
sudo gem install cocoapods -v 1.7.5

3. 초기화
pod setup

4. 최신버전으로 업데이트
sudo gem install cocoapods 

.

320x100

.

IDEA 의 캐쉬를 지워봅시다. 

안드로이드스튜디오 File > Invalidate Caches / Restart

mac intellij idea

VS CODE   cmd+shift+p > Clear Editor History

 

M1 경우

 

On the terminal run:
sudo arch -x86_64 gem install ffi

On the ios project folder run:
arch -x86_64 pod install --repo-update

https://is.gd/OgD48z

 

M1 MacBook Flutter CocoaPods error

M1 MacBook Flutter CocoaPods error Firebase_core / Firebase_auth Use the M1 MacBook. Connect to Firebase using a flutter. But there was a pod install error, so the build is not working. I need to fi..

itslog.tistory.com

 

끝.

300x250
반응형