민프

[Flutter Error] Kotlin Gradle 버전 이슈 본문

[Flutter Error]

[Flutter Error] Kotlin Gradle 버전 이슈

민프야 2023. 10. 17. 10:06
* 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 ':tflite_flutter_helper' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50

tflite_flutter_helper 패키지의 Kotlin Gradle plugin 버전이 너무 낮아서 발생하는 문제입니다. 

패키지 소스 코드를 수정하지 않는 한, 프로젝트 설정을 변경하여 이 문제를 해결할 수 있습니다.

 

해결 방법으로는 아래 사진과 같이

tflite_flutter_helper패키지 폴더로 이동 후 

android/build.gradle ->

buildscript 블록 내의 dependencies 섹션에서 Kotlin Gradle plugin의 버전을 최신 버전으로 업데이트합니다.

Comments