You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With org.gradle.configuration-cache=true in gradle.properties file.
Using androidGitVersion.name() or androidGitVersion.code() in build.gradle file will triggers this issue:
2 problems were found storing the configuration cache.
- Build file 'android/build.gradle': line 64: external process started 'git --version'
See https://docs.gradle.org/8.4/userguide/configuration_cache.html#config_cache:requirements:external_processes
- Build file 'android/build.gradle': line 64: external process started 'git config --system --edit'
See https://docs.gradle.org/8.4/userguide/configuration_cache.html#config_cache:requirements:external_processes
According to the linked docs, in order to solve external process started 'git --version' issue can use:
With
org.gradle.configuration-cache=true
ingradle.properties
file.Using
androidGitVersion.name()
orandroidGitVersion.code()
inbuild.gradle
file will triggers this issue:According to the linked docs, in order to solve
external process started 'git --version'
issue can use:But how can we do this when using
com.gladed.androidgitversion
plugin?The text was updated successfully, but these errors were encountered: