^_^
도움이 되시길
에러 내용
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 // 추가 + 버전 변경
}
잘 동작합니다! 감사합니다. 🥰