728x90
이 글은 제가 Flutter 개발을 하면서 생긴 오류를 해결한 방법을 작성한 글입니다.
찾으려는 오류는 Ctrl+F 로 찾아주세요.
error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.
" 안드로이드 스튜디오 에서 IOS 시뮬레이터로 작업하던중 발생 오류 "
해결한 방법
IOS 시뮬레이터를 종료한다음 > 관련 xCode 종료 > 터미널을 실행시키고 코드창에 > 작업중인 프로젝트로 이동 >
코드를 따라칩니다 >
rm -rf Pods
rm -rf Podfile.lock
cd ios
pod install
다시 시뮬레이터를 동작시키니 해결됐다.
The plugin `tflite` uses a deprecated version of the Android embedding.
To avoid unexpected runtime failures, or future build failures, try to see if this plugin supports the Android V2 embedding. Otherwise, consider removing it since a future release of Flutter will remove these deprecated APIs.
" 안드로이드 스튜디오 에서 tflite 사용하기 위해 pubspec.yaml 에 추가하다가 생긴 오류"
" 최신 flutter에서는 tflite를 지원하지 않는 것 같다"
해결한 방법
tflite 대신 tflite_flutter 라는 것을 사용했다.
https://pub.dev/packages/tflite_flutter
Unable to find bundled Java version.
" Flutter 다운그레이드 중 flutter doctor 실행시 뜬 오류 "
해결한 방법
터미널에 차례대로 실행 하니깐 됐다.
cd /Applications/Android\ Studio.app/Contents/jre
ln -s ../jre jdk
ln -s "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin" jdk
'Flutter > 오류해결' 카테고리의 다른 글
[Flutter] type 'List<dynamic>' is not a subtype of type 'List<String>' (0) | 2023.01.23 |
---|---|
Flutter) CERTIFICATE_VERIFY_FAILED 에러 해결방법 (2) | 2022.09.28 |
에러 'vector' file not found (0) | 2022.07.27 |
에러 Cannot run with sound null safety, because the following dependencies (0) | 2022.07.27 |
에러 'TensorFlowLiteC.h' file not found (0) | 2022.07.27 |