깃 레포지토리를 클론해오면 이렇게 main.dart 에 에러가 난다. Get dependencies 를 눌러 종속성 관리를 해줘야하는데,
나는 get dependencies 를 누르면 아래와 같은 에러가 났다.
The lower bound of "sdk: '>=2.1.0 <3.0.0'" must be 2.12.0'
or higher to enable null safety.
The current Dart SDK (3.2.4) only supports null safety.
이 에러는 Dart 언어의 null safety를 사용하기 위해 필요한 SDK 버전이 지정한 범위 내에 들어오지 않아 발생한 것으로 에러 메시지를 해석해보면 sdk: '>=2.1.0 <3.0.0' 중에서 최소한 2.12.0 이상의 버전이 필요하다고 명시하고 있다.
현재 내 컴퓨터의 Dart SDK 버전이 3.2.4로 되어 있는데, 이는 이미 null safety를 지원하는 버전이다. 따라서 이 프로젝트에서는 이 에러를 해결하려면 pubspec.yaml 파일에 들어가서 Dart SDK의 버전 지정을 수정해야 한다.
pubspec.yaml 파일에 들어가서 에러 메세지에서 권장한 대로 environment의 sdk를 ">=2.1.0 <3.0.0" 에서 ">=2.12.0 <3.0.0"으로 고쳐주었지만 또 에러가 났다.
Because magic_8_ball depends on cupertino_icons >=0.1.1 <1.0.1 which doesn't support null safety, version solving failed.
The lower bound of "sdk: '<2.0.0 or >=2.0.0-dev.28.0 <3.0.0'" must be 2.12.0 or higher to enable null safety.
You can try the following suggestion to make the pubspec resolve:
* Try upgrading your constraint on cupertino_icons: flutter pub add cupertino_icons:^1.0.6
에러 문구를 읽고 cupertino_icons 의 값을 ^0.1.2 에서 ^1.0.6 으로 바꾸어 주었다.
또 다시 에러가 발생했다.
This app is using a deprecated version of the Android embedding.
To avoid unexpected runtime failures, or future build failures, try to migrate this app to the V2 embedding.
뭔지 몰라 찾아보니 1.12 이전 버전에서 제작된 플러터 프로젝트에 패키지를 추가하려고 할 때 발생하는 에러였다.
에러와 함께 뜬 주소로 들어가서 설명을 따라가며 고쳐주었다.
- android/app/src/main/java/[your package name]/co/appbrewery/MainActivity.java 에 들어가서 아래 사진과 같이 해주기
- android/app/src/main/androidManifest.xml 에 들어가서 첫번째 사진처럼 되어 있는 부분을 두번째 사진처럼 고치기
- androidManifest.xml 에서 meta-data 의 내용을 아래와 같이 바꾸기
위의 모든 과정을 하고 나면 감격스러운 빨간 글씨 없는 메세지 창을 만날 수 있다 😭😭
- 끝 - (❁´◡`❁)
📖 Reference 📖
https://github.com/flutter/flutter/wiki/Upgrading-pre-1.12-Android-projects
Upgrading pre 1.12 Android projects
Flutter makes it easy and fast to build beautiful apps for mobile and beyond - flutter/flutter
github.com
The lower bound of "sdk: '>=2.1.0 <3.0.0'" must be 2.12.0 or higher to enable null safety
Hi how this problem solvedenter image description here I added the widget "dropdown_formfield: ^0.1.4" to my project and it showed this error How can I fix this problem please help. This
stackoverflow.com
'Flutter' 카테고리의 다른 글
[Flutter/플러터] 앱기초2 (1) | 2024.01.23 |
---|---|
[Flutter/플러터] Flutter Outline 작동 안될 때 (0) | 2024.01.21 |
[Flutter/플러터] 안드로이드 스튜디오에 깃 레포지토리 클론해오기 (0) | 2024.01.21 |
[Flutter/플러터] 앱 기초 (1) | 2024.01.16 |
[Flutter/플러터] 시작하기 (0) | 2024.01.11 |