안드로이드 개발자의 창고
[코틀린] Execution failed for task ':app:mapDebugSourceSetPaths'. 본문
파이어베이스에 연동하다가 오류가 났다.
![](https://blog.kakaocdn.net/dn/bp9iJ7/btsdZNVmMj0/a9f7PVljZthjYNbImNjFkk/img.png)
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'.
> Querying the mapped value of provider(java.util.Set) before task ':app:processDebugGoogleServices' has completed is not supported
해결방법
build.gradle(Project) 파일에서
'com.google.gms:google-services:4.3.10'를 'com.google.gms:google-services:4.3.14'로 변경해줬다.
버전을 변경해줬더니 해결 됐다.
buildscript {
dependencies {
classpath 'com.google.gms:google-services:4.3.14'
}
...