일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- Python
- 삽질일기
- djangorestframework
- 가보자고
- Flutter
- DRF
- 낭독
- 해커스
- UOPEOPELE
- 백엔드
- 컴공과
- 장고
- SUNLOG
- 매일매일쓰자허무하지않게
- to all the errors i loved
- 다시도전
- 공부기록
- 1학기
- 대학생
- 암영
- 불공단스터디
- 파이썬
- 기록
- 불공단
- opencv
- 라즈베리파이
- 불공단_스터디
- 2024 1학기 기말 파이썬 프로젝트
- django
- Til
- Today
- Total
기술해록본
Flutter: Your project requires a newer version of the Kotlin Gradle plugin 본문
Flutter: Your project requires a newer version of the Kotlin Gradle plugin
HaeYoung_12 2024. 8. 13. 14:29
Your project requires a newer version of the Kotlin Gradle plugin.
플러터 앱 빌드 중에 갑자기 위의 오류가 뜨면서 빌드가 중지 됬다.
https://westofsky.tistory.com/15
https://naman-develop.tistory.com/26
[에러 해결] [Flutter] requires a newer version of the Kotlin Gradle plugin
Your project requires a newer version of the Kotlin Gradle plugin. Find the latest version on https://kotlinlang.org/docs/gradle.html#plugin-and-versions, then update C:\Users\USER\Desktop\myApp\flutter_application_1\android\build.gradle: 어쩌구 에러
naman-develop.tistory.com
1. 번 블로그는 %PROJECT NAME%/android/gradle/build.gradle 경로의 buildscript 부분을 수정하라고 나왔는데 나는 안드로이드 스튜디오를 이용하지 않고 인텔리제이를 이용해서인지 저 부분이 존재하지 않았다.
[Flutter] Your project requires a newer version of Kotlin Gradle plugin 오류
Flutter로 Repick 개발 중 갑자기 위와 같은 오류가 발생했다. 오류 문구를 보면 KGP(Kotlin Gradle Plugin) 최신 버전을 요구한다 .. 같은데 이와 같은 오류를 검색해보니buildscript { ext.kotlin_version = '1.9.20' re
westofsky.tistory.com
그래서 위의 2번 블로그에서 말한대로 seetings.gradle 에 들어가서
id "org.jetbrains.kotlin.android" version "1.7.10" apply false
이 부분을 1.9.0으로 수정해서 빌드했더니 오류 없이 성공했다!