반응형
프로젝트 배포 aab 파일을 만들다가 다음과 같은 처음 보는 에러가 발생했다.
Configuration cache problems found in this build.
1 problem was found storing the configuration cache.
- Task `:app:collectReleaseDependencies` of type `com.android.build.gradle.internal.tasks.PerModuleReportDependenciesTask`: invocation of 'Task.project' at execution time is unsupported.
See https://docs.gradle.org/7.3.3/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution
이러한 문제를 무시하게 위해서는 gradle.properties에 'org.gradle.unsafe.configuration-cache-problems=warn 추가해주면 된다.
org.gradle.unsafe.configuration-cache-problems=warn
https://stackoverflow.com/questions/68127791/configuration-cache-enabled-causes-build-to-fail
'IT > Error' 카테고리의 다른 글
Android / gradle 버전 업그레이드 후 unresolved reference buildconfig (0) | 2024.04.30 |
---|---|
안드로이드 스튜디오 / Cause: error=0, spawn failed (0) | 2023.07.29 |
안드로이드 스튜디오 / Gradle sync failed: Unable to start the daemon process. (0) | 2022.07.01 |
안드로이드 스튜디오 / Firebase Could not deserialize object 에러 (0) | 2022.03.25 |
안드로이드 스튜디오 / ScrollView can host only one direct child 오류 해결 (0) | 2022.03.21 |