Flutter/Flutter 에러 해결 6

[에러해결] Failed to verify code signature of... | The identity used to sign the executable is no longer valid.

에러발생Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.7bcLRc/extracted/Runner.app : 0xe8008018 (The identity used to sign the executable is no longer valid.) Please ensure that the certificates used to sign your app have not expired. If this issue persists, please attach an IPA of your app when sending a report to Apple.   갑자기 빌드를 잘하던 앱이 요상한 에..

[flutter 에러해결] The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 12.0 to 17.5.99. (in target 'GoogleDataTransport' from project 'Pods')

에러 메시지 Writing result bundle at path: /var/folders/jh/y9698_j138qclsq5jcwck9jh0000gn/T/flutter_tools.4Bjdjz/flutter_ios_build_temp_dirANxhRM/temporary_xcresult_bundle /Users/dayeon/Library/Developer/Xcode/DerivedData/Runner-ealmqulhcewlragkkxbxwsthahph/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Script-21EA686D5646CF8A3CCBD44A.sh: line 2: /Users/dayeon/Developme..

[flutter 에러 해결] Framework 'Pods_Runner' not found

재현flutter plugin 프로젝트 생성프로젝트 명/example/ios 폴더 우클릭 Flutter -> Open Ios module in XCode 클릭Xcode에서 Product -> Run 클릭 발생한 에러Framework 'Pods_Runner' not foundLinker command failed with exit code 1 (use -v to see invocation) 원인CocoaPods가 플러터 플러그인 프로젝트의 종속성을 올바르게 설치하지 못했을 때 발생해결프로젝트 클린 및 재빌드flutter cleanflutter pub getcd iospod installpod updatecd ..flutter build ios

adb: failed to open ~build/app/outputs/flutter-apk/app-debug.apk: Operation not permitted

안드로이드 실행시 다음과 같은 에러 발생  Error: ADB exited with exit code 1Performing Streamed Installadb: failed to open /Users/chouchou/what_flutter_can_do_today/build/app/outputs/flutter-apk/app-debug.apk: Operation not permittedError launching application on sdk gphone arm64.  열심히 검색해본 결과 회사 보안프로그램 때문에 발생했다. 보안 프로그램 삭제 후 안드로이드 실행시 문제 없으 실행 됌

[에러 해결] android studio에서 Dart SDK is not configured

상황 다음 캡쳐와 같이 Dart SDK is not configured 경고 메세지가 나온다. 해결 Open Dart settings 클릭한다. Dart SDK path 부분이 중요한데 플러터를 설치한 위치 밑에 'flutter/bin/cache/dart-sdk'이 부분까지 정확히 적어줘야 한다 그리고 두 개 체크박스까지 체크해준다. 상황2 run 버튼이 비활성화되어 있고 Add Configuration...이 보인다. 해결 안드로이드 스튜디오 첫 실행시 나오는 화면에서 Plugins -> flutter 검색 -> Install 또는 command + , 눌러서 Settings 창을 열고 좌상단 검색창에 'plugins' 검색 -> flutter 검색 -> Install

[에러 해결] Flutter SDK not available (feat. Intl)

상황 VS Code에서 Flutter Intl 익스텐션 설치 후 Command + Shift + P 단축키로 Command Palette...실행 Flutter Intl: Initialize 입력하고 누를시 다음과 같은 에러 발생 시도1 flutter가 설치된 경로를 ~/.zshrc에 PATH 추가하기 which flutter 위 명령어 입력시 [경로]/flutter/bin 까지의 경로를 확인하고, 아래처럼 ~/.zshrc에 flutter SDK 경로 추가한다. export PATH="$PATH:/Users/someone/Developments/flutter/bin" 그리고 재부팅 같은 에러가 나고 해결안됨 시도2 settings.json파일에 "dart.flutterSdkPath": "/Users/so..