일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 개발자
- Notification
- error
- Archive
- 이미지
- rxswift
- MacOS
- github
- darkmode
- JPA
- FLUTTER
- appstore
- UIButton
- mac
- Swift
- IOS
- view
- Realm
- Session
- iOS16
- Firebase
- Git
- SwiftUI
- Code
- Xcode
- Apple
- window
- geofencing
- 웹뷰
- 한글
- Today
- Total
목록Flutter/Error (8)
EEYatHo 앱 깎는 이야기

iOS 아카이빙 후 업로드 중, Signing Runner.app... 할때 Xcode가 죽음 Xcode 로그에서 크래쉬 난 쓰레드를 보면 아래와 같음더보기Thread 8 Crashed:: Dispatch queue: com.apple.root.default-qos 0 libsystem_kernel.dylib 0x19f9b15f0 __pthread_kill + 8 1 libsystem_pthread.dylib 0x19f9e9c20 pthread_kill + 288 2 libsystem_c.dylib 0x19f8f6a30 abort + 180 3 IDEKit 0x107debb64 +[IDEAssertionHandler _handleAssertionWithLogString:assertionSignature..
에러 현상1. 안드로이드 빌드시 앱 실행하자마자 꺼짐2. flutter run --verbose 실행시 아래 로그 발생(요약: Didn't find class ".MainActivity" on path: DexPathList..) 12-30 10:21:45.820 I/Finsky ( 6261): [2] aaow.i(1): aaow - Received: android.intent.action.PACKAGE_REMOVED, [QYmj42YIe3QPu41ornIwGPfD2dX-4zb9YxrT9uk_QQ0][ +5 ms] executing: {사용자경로}/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell am start -a andr..
에러 현상어떤게 원인인진 모르겠으나, Shorebird 적용, Flutter 엔진 버전 업 등 다양한을 Android 동작 되는 것만 보고 넘어갔었음 이후 VSC로 iOS 빌드시, 아무런 에러 로그 없이 10초 정도 뒤 빌드 멈춤Xcode로 빌드시, 마찬가지 별다른 에러 로그 없이 빌드 실패만뜸 해결 방법아래 커맨드로 상세한 로그 확인flutter build ios -v 아래의 빨간색 에러 로그 확인. 하지만 마찬가지로 별다른 내용이 없음..[+1744 ms] "flutter ios" took 94,151ms.[ +18 ms] Encountered error while building for device.[ ] #0 throwToolExit (package:..
에러 현상빌드시 에러 발생 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 directoryLaunching lib/main.dart on iPhone 15 in debug mode... Xcode build done. 58.7s Failed to b..

Flutter로 개발한 앱이 iOS 디바이스에서 실행하려하면 아래 메세지의 경고창이 뜨고 하얀 화면만 보이게 된다. 한국어 : 개발자를 확인할 수 없기 때문에 'iproxy'을(를) 열 수 없습니다. 영어 : macOS cannot verify the developer of 'iproxy'. 처음엔 코드사이닝 문제인 줄 알았는데, 그냥 macOS 보안 문제였다. 해결 방법 : 시스템 환경설정 -> 보안 및 개인 정보 보호 -> "확인 없이 허용" 클릭

아래의 플러터 코드랩 실습 중에, https://codelabs.developers.google.com/codelabs/flutter-boring-to-beautiful#2 This GoRouteInformationParser needs to be used with GoRouteInformationProvider, did you forget to pass in GoRouter.routeInformationProvider to the Router constructor? 'package:go_router/src/go_route_information_parser.dart': Failed assertion: line 148 pos 13: 'routeInformation is DebugGoRouteInformat..

맥 OS 카탈리나부터, 터미널이 bash에서 zsh로 바뀌었습니다. 터미널의 환경변수를 bash에서는 ~/.bash_profile에 적었었지만, zsh에서는 ~/.zshrc에 적습니다. 때문에, zsh를 쓰시는 분들은 bash_profile에 Path 추가해줘도 터미널에서 flutter 명령을 인식하지 못합니다. ( "command not found: flutter" 에러가 뜨게 됩니다. ) zsh 터미널에 환경변수 추가하기 ~/.zshrc 파일끝에 아래 코드를 적어주시면 됩니다. 터미널로 하셔도 되고, 직접 GUI로 열어서 적으셔도 됩니다. export PATH="$PATH:[flutter bin폴더 경로]" 참고 블로그 : https://eunjin3786.tistory.com/221 아기개발자님 감..

아래, 플러터 공식 페이지의 튜토리얼(codelab)을 따라하다가, https://flutter-ko.dev/docs/get-started/codelab 첫 Flutter 앱 작성하기 - 1부 flutter-ko.dev english_words 라이브러리를 설치 후, 빌드시 에러가 발생하였다. english_words 때문에 건전한(sound) null safety로 실행할 수 없다는 것. 1. null safety 에러 무시 아래처럼, 해당 에러를 무시하는 방법도 있지만, 맘에 들지 않는다.. $ dart --no-sound-null-safety run 2. 라이브러리의 null safety 체크 및 버전 변경 라이브러리가 null-safety한지 체크해주는 명령어가 있다. $ dart pub outd..