본문 바로가기
반응형

해결33

[Solved][iOS] Automatically assigning platform `iOS` with version `12.0` on target `Runner` because no platform was specified. Please specify a platform for this target in your Podfile. [Solved[iOS] [!] Automatically assigning platform `iOS` with version `12.0` on target `Runner` because no platform was specified. Please specify a platform for this target in your Podfile. 문제 상황 (Problem) ios 앱 빌드 중에 아래와 같은 에러가 발생한다. [Eng](The following error occurs while building the ios app.) [!] Automatically assigning platform `iOS` with version `12.0` on target `Runner` because no platform .. 2023. 8. 18.
[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.
[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.
Effective C++ 항목11 : operator에서는 자기대입에 대한 처리가 빠지지 않도록 하자 Effective C++ 항목11 operator에서는 자기대입에 대한 처리가 빠지지 않도록 하자 선 요약 operator=함수를 구현할 때, 자기대입을 제대로 처리하도록 하자. 객체간의 주소 비교 호출 순서를 적절히 조절 "복사 후 맞바꾸기" 기법 두 개 이상의 객체에 대해 동작하는 함수가 있다면, 이 함수에 넘겨지는 객체들이 사실 같은 객체인지 정확하게 체크하자. class Widget{ ... } Widget w; ... w = w // 자기에 대한 대입 위와 같이 C++에서는 자기 자신을 대입하는 자기대입이 적법(legal)하다. 자기대입은 여러 곳에서 하나의 객체를 참조하는 상태, 즉 중복참조라고도 불린다. 중복참조란? class Base { ... } class Derived { ... } v.. 2023. 2. 18.
반응형