개발 환경
---------------------------------
OS : Mac
개발 툴 : android studio
개발 언어 : dart
개발 프레임워크 : flutter
---------------------------------
문제 상황
: 프로젝트를 실행하는데 아래와 같은 에러가 발생했다.
kotlin gradle plugin 버전을 1.5.20 이상으로 맞춰 달라는 내용.
현재 내 프로젝트 루트 build.gradle 파일에는 1.7.10으로 셋팅되어 있다.
에러를 자세히 읽어보면
project ':root_detector' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50
여기가 1.3.50으로 셋팅되어있다고 한다.
FAILURE: Build failed with an exception.
* What went wrong:
The Android Gradle plugin supports only Kotlin Gradle plugin version 1.5.20 and higher.
The following dependencies do not satisfy the required version:
project ':root_detector' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 5s
Exception: Gradle task assembleDebug failed with exit code 1
해결 방안
프로젝트 inspector에서 External Libraries ->Flutter Plugins 에서 해당 프로젝트를 찾아준다.
확인해보니 1.3.50으로 셋팅되어있다.
값을 1.7.10으로 수정해주었다.
'개발노트 > Flutter' 카테고리의 다른 글
[Flutter] 우당탕탕 Firebase 설정 및 에러 해결기 (3) | 2023.07.28 |
---|---|
[Flutter] Appbar trailling button 만들기(오른쪽 버튼) (0) | 2023.07.27 |
[Flutter] Download Dart SDK 해결기 (0) | 2023.07.25 |
[Flutter] FCM 토큰 발급 및 Xcode 셋팅(Background Modes, Push Notification) (0) | 2023.07.06 |
[Flutter] FIRMessaging Remote Notifications proxy enabled (0) | 2023.06.13 |
댓글