본문 바로가기
반응형

에러33

[Flutter][Solved] Error: The argument type 'bool?' can't be assigned to the parameter type 'bool' because 'bool?' is nullable and 'bool' isn't. 문제 상황 (Problem) flutter 앱을 빌드하는 중에 아래와 같은 에러가 발생했다. firebase_auth-3.2.0 Error: The argument type 'bool?' can't be assigned to the parameter type 'bool' because 'bool?' is nullable and 'bool' isn't. 해결 방법 (Solution) 1. flutter pub upgrade 수행 2. flutter doctor 체크 참고 사이트 https://github.com/firebase/flutterfire/issues/9015 🐛 [cloud_firestore] Xcode build fails with errors: Expected a type in Firebas.. 2023. 7. 26.
Flutter Unknown upstream repository issue (solved) 문제 상황 (Problem) $ flutter doctor 를 실행했을 때 아래와 같은 워닝 문구가 나온다. [!] Flutter (Channel unknown, 3.7.0, on macOS 13.4.1 22F82 darwin-arm64, locale ko-KR) ! Flutter version 3.7.0 on channel unknown at /Users/sjh/development/flutter Currently on an unknown channel. Run `flutter channel` to switch to an official channel. If that doesn't fix the issue, reinstall Flutter by following instructions at https:.. 2023. 7. 26.
[OS X] Open SSL - Handshake Error (Solved) [OS X] Open SSL - Handshake Error (Solved) 문제 상황 (problem) Open SSL 관련 오류가 계속된다. 원인이 모호한 경우, Handshake error일 가능성이 높다. 해결 방법 (solution) export PATH=/usr/local/bin:$PATH brew link --force openssl 환경 변수 경로 PATH에 위와 같이 openssl이 위치한 경로를 추가해준다. 그리고, brew 패키지 매니저를 이용하여 openssl를 강제로 link해준다. 2023. 7. 26.
[Xcode] libarclite_iphonesimulator.a (Error solved) [Xcode] libarclite_iphonesimulator.a Error solved 문제 상황 (Problem) 아래의 에러 메시지가 발생함 File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/a rc/libarclite_iphonesimulator.a 해결 방법 (Way to solve) Podfile을 열어서 제일 아래 부분의 post_install을 아래와 같이 변경한다. post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_set.. 2023. 7. 25.
반응형