본문 바로가기
개발/Flutter

[Flutter] Error running pod install

by kamyiho 2022. 1. 18.
728x90

플러터에서 iOS 빌드하다 이러한 에러를 만난다면 당황하지 말 것

  • Error running pod install
  • Automatically assigning platform `iOS` with version `9.0` on target `Runner` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`.

 

프로젝트 내 ios 폴더에서 Podfile 을 열고,

최상단에 주석처리 되어있는 부분을 해제하고 # platform :ios, '9.0' ->  platform :ios, '9.0' 하고 version을 높여준다.

나는 11.0 으로 변경했다.

 

이후 터미널에서 ios 폴더로 이동 후 아래 명령어를 순서대로 입력하면 끝!

$ pod update
$ pod install

 

반응형

'개발 > Flutter' 카테고리의 다른 글

[Flutter] Google Map 연동  (0) 2022.02.04
[Flutter] bottom overflowed by ~ pixels  (0) 2022.02.03
[Flutter] firebase 연동 : FlutterFire CLI  (0) 2022.01.17
[Flutter] Unable to find bundled Java version  (0) 2022.01.11
[Flutter] firebase 연동  (0) 2022.01.11

댓글