평화로운 개발인생에 또 구글이 정기적으로 시련을 준다. 우선 기본적으로 손봐야할 코드는 android/app/build.gradle위치한 compileSdkVersion : xxxtargetSdkVersion: xxx 위에 스샷대로라면, compileSdkVersion : 34targetSdkVersion: 34 로 변경되어야 합니다. 여기서 우리는 2가지 선택을 해야합니다.1. build.grade 파일을 직접 수정할 것인가 ?2. 거기에 박혀있는 flutter 상수를 수정할 것인가 ? 전자인 경우 직접 원하는 버전을 입력하면된다.후자의 경우 플루터 상수를 변경해주면 된다.flutter 상수의 경우는 flutter sdk가 설치되어 있는 위치에서packages/flutter_tools/gradle/s..
보호되어 있는 글입니다.
Flutter getx 패키를 사용하고 있는데, 그중에 모듈을 자동으로 생성해주는 get_cli 을 잘사용하고 있다. 그런데 어느날 갑자기 아래와 같은 에러가 나왔다. Synchronous waiting using dart:cli waitFor and C API Dart\_WaitForEvent is deprecated and disabled by default. This feature will be fully removed in Dart 3.4 release. You can currently still enable it by passing --enable\_deprecated\_wait\_for to the Dart VM. See [https://dartbug.com/52121.](https://dar..