반응형
Flutter를 이용해 health packge를 연동해 개발하는 중, 내 휴대폰을 안드로이드 12버전으로 업데이트를 했다.
업데이트를 한 후 다음과 같은 에러를 마주치게 되었다.
* What went wrong:
Execution failed for task ':health:compileDebugKotlin'.
> Compilation error. See log for more details
buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
kotlin gradle plugin을 최신 버전으로 업데이트 해주면 될 것 같다.
프로젝트명/android/build.gradle 파일을 열어 다음과 같이 수정해주자.
ext.kotlin_version = '1.6.10'
위와 같이 수정한 후 다시 run 해보면 제대로 작동되는 것을 확인할 수 있다.
'소프트웨어 > Flutter' 카테고리의 다른 글
[Flutter] 앱 실행 시 애니메이션이 버벅일 때 : Shader Compilation Jank 사용하기 (0) | 2022.03.25 |
---|---|
[Flutter] Permission_handler ios 15 버전에서 location 권한 요청하기 (0) | 2022.03.21 |
[Flutter] BoxDecoration 그림자 효과 주기 (0) | 2022.03.14 |
[Flutter] Dialog Navigator.pop()이 적용되지 않을 때 (0) | 2022.03.12 |
[Flutter] Ink, InkWell을 사용한 리플 효과 만들기 (0) | 2022.03.10 |