[문제]
The current Dart SDK version is 3.5.1.
Because project_name requires SDK version ^3.5.3, version solving failed.
You can try the following suggestion to make the pubspec resolve:
* Try using the Flutter SDK version: 3.24.4.
Process finished with exit code 1
Dart SDK 버전이 요구되는 버전보다 낮아서 발생하는 문제로 프로젝트 패키지가 Dart SDK 3.5.3 이상을 필요로 하기 때문에, 현재 설치된 Dart SDK 3.5.1 버전에서는 호환되지 않는다.
[해결]
flutter upgrade
[다시 만난 다른 문제]
Your flutter checkout has local changes that would be erased by upgrading. If you want to keep these changes, it is recommended that you stash them via "git stash" or else commit the changes to a local branch. If it is okay to
remove local changes, then re-run this command with "--force"
로컬에서 수정한 사항들이 있어서 flutter upgrade 명령이 실행되지 않고 있다. 해결 방법은 두가지가 있다.
1. 변경사항 보관
아래를 순서대로 입력해 주면 된다.
git stash // 변경 사항을 임시로 저장
|
flutter upgrade // 다시 업그레이드 실행
|
git stash pop // 저장했던 변경 사항을 다시 적용 (선택사항)
2. 변경 사항을 로컬 브런치에 커밋
git checkout -b my_local_changes
git add .
git commit -m "Save local changes before upgrade"
'Flutter' 카테고리의 다른 글
Flutter 프로젝트 외부라이브러리를 안드로이드에 넣을때 (0) | 2025.01.09 |
---|---|
Flutter pub.dev 에 패키지 배포하기 (1) | 2024.10.16 |
Flutter 네이버 그린닷 구현 (feat. 네이버 스마트렌즈) _ 2 (0) | 2024.10.09 |
Flutter 네이버 그린닷 구현 (feat. 네이버 스마트렌즈) _ 1 (0) | 2024.10.07 |
Flutter Textfield 키보드로 focus 이동 시키기 (feat. 로그인 창) (0) | 2024.09.26 |