Archives
Recent Posts
«   2024/07   »
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
Today
Total
관리 메뉴

안드로이드 개발자의 창고

[코틀린] Execution failed for task ':app:mapDebugSourceSetPaths'. 본문

오류 해결

[코틀린] Execution failed for task ':app:mapDebugSourceSetPaths'.

Wise-99 2023. 5. 7. 01:23

파이어베이스에 연동하다가 오류가 났다.

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'
    }
    ...