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 |
29 | 30 | 31 |
Tags
- github
- Xcode
- Swift
- mac
- geofencing
- view
- JPA
- stack
- window
- Notification
- Git
- rxswift
- darkmode
- FLUTTER
- Archive
- appstore
- Apple
- Realm
- iOS16
- Firebase
- MacOS
- UIButton
- Code
- Session
- 웹뷰
- SwiftUI
- 개발자
- error
- IOS
- 한글
Archives
- Today
- Total
EEYatHo 앱 깎는 이야기
flutterfire: command not found 본문
반응형
에러 현상
빌드시 에러 발생
- Flutter 빌드시 Debug Console 에러 로그
Error (Xcode): ../../.pub-cache/git/{개인라이브러리이름}-a19e32840efbb0a62ca7cb070355bc9708e124f8/lib/atoms/text/text.dart:2:8: Error: Error when reading '../../.pub-cache/git/{개인라이브러리이름}-a19e32840efbb0a62ca7cb070355bc9708e124f8/lib/colors.dart': No such file or directory
Launching lib/main.dart on iPhone 15 in debug mode... Xcode build done. 58.7s Failed to build iOS app Error output from Xcode build: ↳ --- xcodebuild: WARNING: Using the first of multiple matching destinations: 2 { platform:iOS Simulator, id:3087CA21-6DF4-4FE1-A150-6835F5A8AC84, OS:17.4, name:iPhone 15 } ** BUILD FAILED ** 2
- Xcode 클린 후 빌드했을 때 에러
Command PhaseScriptExecution failed with a nonzero exit code
해결 방법
- iOS, Flutter 관련 모든 캐시 clean해도 무용지물..
- 아래 스크립트로 빌드 상세로그를 노출한 후, GPT에게 분석 요청
flutter run --verbose
3. GPT가 엄청나게 긴 로그에서 아래 로그를 발견 (기특)
{Xcode경로}/DerivedData/Runner-fnbsylkqjdllfkasamidrdoqpwjw/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Ru nner.build/Script-295586BF5612ACFF97700ADB.sh: line 5: flutterfire: command not found Command PhaseScriptExecution failed with a nonzero exit code
4. flutterfire_cli 다시 설치해서 해결
dart pub global activage flutterfire_cli
왜 지워져있던건지는.. 미지수..
저게 문제인제 왜 Flutter, Xcode에서는 에러가 명확하게 노출되지 않는지도 미지수..
'Flutter > Error' 카테고리의 다른 글
Flutter ) 개발자를 확인할 수 없기 때문에 iproxy를 열 수 없습니다. - EEYatHo (0) | 2022.08.15 |
---|---|
Flutter ) GoRouteInformationProvider 에러 해결 - EEYatHo Flutter (0) | 2022.06.27 |
Flutter ) 터미널이 flutter 경로 인식 못할 때 - EEYatHo (0) | 2022.06.20 |
Flutter ) don't support null safety - EEYatHo (0) | 2022.06.20 |
Comments