본문 바로가기

개발(합니다)/시나브로(이슈)

[Flutter-Xcode] m1에서 xcode 업데이트 하고나서 flutter 에러 나서 안될때

반응형

상황

Xcode를 업데이트 할 때마다 위 에러가 납니다. 

한번은 os를 재설치했는데 지인이 작업을 같이 하다가 겨우 해결법을 알게되었습니다.

문제 파악

m1으로 넘어오면서 생기는 문제로 파악했습니다.

xcode를 업데이트 할 떄마다 에러가 발생합니다.

 

해결 방법

https://stackoverflow.com/questions/69055694/cocoapod-error-tried-to-install-all-the-possible-way-on-m1

 

Cocoapod error, tried to install all the possible way on M1

I get this error Downloading template ✔ Copying template ✔ Processing template ✖ Installing CocoaPods dependencies (this may take a few minutes) ✖ Installing CocoaPods dependencies (this may take a...

stackoverflow.com

위에서 내용을 참고했습니다.

 

아래 코드를 flutter ios 폴더 위치에서 실행합니다.

 

sudo arch -x86_64 gem install ffi

cd ios && arch -x86_64 pod install && cd ../

 

 

반응형