Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- gestureRecognizers
- project flow
- 에러
- 안드로이드
- 웹뷰
- StringUtils.isBlank
- not working
- Flutter SDK
- Flutter
- Could not create service of type FileAccessTimeJournal using
- foreground
- carousel slider
- allowBackup
- Set ID
- Chrome Developer Tools
- 플러터
- VerticalMultiDragGestureRecognizer
- TextFormField
- TCP/IP모델
- runSpacing
- 입력 커서
- 두 수의 나눗셈
- freezed
- fullBackupContent
- 프로그래머스
- StringUtils.isEmpty
- 플루터
- 크롬개발자도구
- 안보내짐
- 앱
Archives
- Today
- Total
흰오목눈이야 개발하자
Flutter iOS 세팅 에러 Xcode installation is incomplete; a full installation is necessary for iOS development. 본문
Flutter
Flutter iOS 세팅 에러 Xcode installation is incomplete; a full installation is necessary for iOS development.
흰오목눈이 2023. 1. 25. 18:02flutter doctor를 실행하고 iOS와 관련된 부분에서 문제가 있었다.
[✗] Xcode - develop for iOS and macOS
✗ Xcode installation is incomplete; a full installation is necessary for iOS development.
Download at: https://developer.apple.com/xcode/download/
Or install Xcode via the App Store.
Once installed, run:
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
✗ CocoaPods not installed.
CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side.
Without CocoaPods, plugins will not work on iOS or macOS.
For more info, see https://flutter.dev/platform-plugins
To install see https://guides.cocoapods.org/using/getting-started.html#installation for instructions.
문제
Xcode가 설치되어 있는데도 불구하고 아래의 에러가 나왔다. Xcode가 완전하게 설치되어 있지 않다는 내용이었다.
✗ Xcode installation is incomplete; a full installation is necessary for iOS development.
Download at: https://developer.apple.com/xcode/download/
Or install Xcode via the App Store.
Once installed, run:
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
해결
터미널에 아래 코드를 입력하고 다시 flutter doctor로 검사하자 해결되었다.
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
'Flutter' 카테고리의 다른 글
[Flutter, Dart] const, final 차이점 (0) | 2023.03.13 |
---|---|
Flutter iOS 세팅 에러 CocoaPods not installed. (0) | 2023.01.25 |
[Flutter] 안드로이드 세팅 에러 ! Some Android licenses not accepted. To resolve this, run: flutter doctor --android-licenses (0) | 2023.01.24 |
[Flutter] 안드로이드 에러 cmdline-tools component is missing (0) | 2023.01.24 |
비주얼 스튜디오(Visual Studio)로 플러터(Flutter) 환경 설정하기 (0) | 2023.01.24 |