Flutter(8)
-
CocoaPods not installed or not in valid state
Exception: CocoaPods not installed or not in valid state. sudo xcode-select -switch / 참고 https://2vup.com/mac-cocoapods-install-error/ https://stackoverflow.com/questions/27768420/gem-installation-error-you-have-to-install-development-tools-first https://www.androidhuman.com/2021-04-18-flutter_cocoapods_not_installed_or_not_in_valid_state
2022.02.04 -
iOS build issue - Error launching application on iPhone
Error launching application on iPhone # issue # solution => Any iOS Device (arm64, armv7) 으로 build device 변경 + check build on fvm library version fixed webview_flutter: 2.0.10 #fixed
2021.08.31 -
iOS build issue - 'Flutter/Flutter.h' file not found
'Flutter/Flutter.h' file not found # issue # solution : firebase library version upgrade (2021.08.30) firebase_core: ^1.6.0 firebase_analytics: ^8.0.3 firebase_crashlytics: ^2.2.1 firebase_dynamic_links: ^2.0.9 firebase_messaging: ^10.0.6 flutter_local_notifications: ^8.1.1+1 notification_permissions: ^0.4.8 firebase_remote_config: ^0.10.0+5 firebase_auth: ^3.1.0 http: ^0.13.3 url_launcher: ^6.0..
2021.08.31 -
iOS build issue - Error running pod install
Error running pod install # issue # solution % cd ios % pod install --repo-update ### if error occurs % rm Podfile.lock % pod install --repo-update
2021.08.31 -
[Flutter] BLOC패턴
핵심개념 #Events Bloc으로 향하는 입력. 일반적으로 버튼눌림 같은 사용자 상호작용, 페이지로드 같은 라이프사이클 이벤트에 의해 디스패치됩니다. #States Bloc의 출력. 앱의 상태를 대표. UI 컴포넌트들은 상태를 공지받을 수 있고, 그 상태를 기반으로 다시 그릴 수 있습니다. #Transitions 한 상태에서 또 다른 상태로의 변경을 의미. Transition은 현재 상태, 이벤트, 다음 상태로 구성됩니다. #Streams 비동기 데이터의 나열. 데이터 통로 #Blocs Events의 "입력 Stream"을 States의 "출력 Stream"으로 변시켜주는 컴포넌트. 아키텍쳐 GITHUB: https://github.com/felangel/bloc 출처: https://bsscco.gi..
2019.06.20 -
[Flutter] iOS: Command /bin/sh failed with exit code 255
터미널 입력 flutter clean flutter build ios
2019.05.15