[Flutter-Android] Android Build Error (1)

김선욱·2023년 7월 29일
0

Resolving Errors

목록 보기
4/5
post-thumbnail

Android에서 Flutter run 중에 발생한 문제

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:mapDebugSourceSetPaths'.
> Error while evaluating property 'extraGeneratedResDir' of task ':app:mapDebugSourceSetPaths'
   > Failed to calculate the value of task ':app:mapDebugSourceSetPaths' property 'extraGeneratedResDir'.

Solution

dependencies {
    classpath 'com.android.tools.build:gradle:7.3.0'
    classpath 'com.google.gms:google-services:4.3.14'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}

1) Project/android/build.gradle 파일로 이동
2) 'com.google.gms:google-services:4.3.14' 이처럼 google-services의 버전을 4.3.14로 변경하여 준다.

profile
💻 Flutter Developer

0개의 댓글