flutter 최신 버전 확인
https://docs.flutter.dev/development/tools/sdk/releases?tab=macos
1. flutter upgrade로 flutter version 업그레이드 하려 하니 warning 메시지 뜸
https://eunjin3786.tistory.com/417 flutter 버전 참고
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".
https://stackoverflow.com/questions/56681580/command-doesnt-work-after-upgrade-flutter
flutter upgrade --force로 진행
2. 업그레이드 후 build 하다가 아래 에러 발생
Warning: Operand of null-aware operation '!' has type 'SchedulerBinding' which excludes null
코드에서 ! 나 ? operator 제거, flutter pub upgrade로 패키지 업데이트함
3.
또 에러남
프로젝트/android/app/build.gradle 의 30을 31로 고치라고 해서 고침
android {
compileSdkVersion 30 // 이 부분을 31로 고치라고 나옴
...
}
4. 에러남
ext.kotlin_version 버전을 변경하라고 해서 변경
https://kjmhercules.tistory.com/7
5. 이번엔
flutter Error: Member not found: 'UnicodeChar'.
https://stackoverflow.com/questions/72233476/flutter-error-member-not-found-unicodechar
참고해서 패키지 업그레이드 해서 해결
'프로그래밍 > Flutter & Dart' 카테고리의 다른 글
[Flutter] AppBar의 title 왼쪽으로 정렬하기 (0) | 2022.11.24 |
---|---|
[Flutter] Android Emulator error (0) | 2022.03.23 |
[Dart] Optional Parameters (Positional, Named) (0) | 2021.11.01 |
[Flutter] Single-child layout / Multi-child layout / Silver Widgets (0) | 2021.08.15 |
[Flutter] EdgeInsets class (0) | 2021.08.15 |
댓글