После обновления gradle до 8.2.1 возникает проблема с кешем конфигурации:
Это моя ошибка:
Configuration cache problems found in this build.
1 problem was found storing the configuration cache.
- Build file 'app/build.gradle.kts': external process started 'git rev-parse --verify --short HEAD'
See https://docs.gradle.org/8.2.1/userguide ... _processes
Эта проблема возникает с кодом:
val gitCommitHash = "git rev-parse --verify --short HEAD".runCommand(workingDir = rootDir)
then try to assign
versionNameSuffix = "-QA ($gitCommitHash)"
Я видел решение с gradle.properties, но оно не работает.:
org.gradle.unsafe.configuration-cache=true
Подробнее здесь: https://stackoverflow.com/questions/780 ... che-occurs