본문 바로가기
반응형

솔루션5

[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.
[ios] Assets.xcassets: error: None of the input catalogs contained a matching stickers icon set or app icon set named "AppIcon". [ios] Assets.xcassets: error: None of the input catalogs contained a matching stickers icon set or app icon set named "AppIcon". 문제 상황 ios 앱을 빌드했더니 이러한 에러 메시지가 나오면서 빌드에 실패한다. Assets.xcassets: error: None of the input catalogs contained a matching stickers icon set or app icon set named "AppIcon". 해결 방법 ios/Flutter/Runner/Assets.xcassets/ 아래에 AppIcon.appiconset을 추가한다. 아이콘 모음을 생성하고 추가하는 방법은 아래 글을 .. 2023. 1. 14.
반응형