반응형
포스팅 환경
- M1 Mac OS Ventura 13.4.1
- Android Studio Giraffe | 2022.3.1 Patch 1 (ARM)
- Gradle 8.2
- Android Build Gradle 8.2.2
- Kolin 1.7.20
- Target SDK 34
개요
앱을 targetSdk 33 → 34로 마이그레이션을 하고
release 빌드와 release 사이닝의 런타임 환경에서 테스트를 끝내고
aab 파일을 뽑으려고 빌드 할 때 아래와 같은 에러가 발생했어요…
> Task :app:mapProductionReleaseSourceSetPaths FAILED
Execution failed for task ':app:mapProductionReleaseSourceSetPaths'.
> Error while evaluating property 'extraGeneratedResDir' of task ':app:mapProductionReleaseSourceSetPaths'
> Failed to calculate the value of task ':app:mapProductionReleaseSourceSetPaths' property 'extraGeneratedResDir'.
> Querying the mapped value of provider(java.util.Set) before task ':app:processProductionReleaseGoogleServices' has completed is not supported
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
문제
왠지 google service 라이브러리와 관련있을 것 같았는데
역시나 찾아보니 google play service 의존성의 버전문제와 관련이 있었어요
https://stackoverflow.com/a/73813407
해결
저 역시 4.3.10 버전을 쓰고 있었고 4.3.14 버전 이상으로 변경했어요.
이후 더 이상의 빌드 에러는 발생하지 않았답니다 후...
build.gradle(project)
buildscript {
dependencies {
...
// 4.3.10 → 4.3.14
classpath "com.google.gms:google-services:4.3.14"
...
}
}
문제 해결!
반응형
'Develop > Error Box' 카테고리의 다른 글
[Android] - PendingIntent FLAG_IMMUTABLE, FLAG_MUTABLE 에러 (0) | 2022.10.13 |
---|---|
[Android] Compose IncompatibleComposeRuntimeVersionException Error (1) | 2022.07.28 |
[Android] - logcat: Unexpected EOF! Error (2) | 2021.03.02 |
[Android] W/ExifInterface: Invalid image: ExifInterface got an unsupported image format.... (0) | 2020.10.20 |
[Android] SDK licence accepted 문제 (0) | 2020.04.07 |