안드로이드 스튜디오 Firebase [mapDebugSourceSetPaths] 에러 해결법

bbibbi·2022년 11월 16일
0

^_^

도움이 되시길

에러 내용

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 "extraGeneratedResDip'
      > Querying the mapped value of provider (interface java.til.Set) before task ": app: processDebugGoogleServices' has completed is not supported

해결 방법

build.gradle (Project)

: 이 파일에서 google-services 버전을 4.3.14로 변경하십쇼

buildscript {
    dependencies {
        classpath 'com.google.gms:google-services:4.3.14' // 버전 변경
    }
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
    id 'com.android.application' version '7.3.0' apply false
    id 'com.android.library' version '7.3.0' apply false
    id 'com.google.gms.google-services' version '4.3.14' apply false // 추가 + 버전 변경
}
profile
안녕하세요

1개의 댓글

comment-user-thumbnail
2023년 6월 24일

잘 동작합니다! 감사합니다. 🥰

답글 달기