Skip to content

Commit

Permalink
Merge pull request #111 from snappdevelopment/disable-config-cache
Browse files Browse the repository at this point in the history
Disable configuration cache
  • Loading branch information
snappdevelopment authored Nov 30, 2024
2 parents d9e204c + 1e83158 commit ffa75d9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
org.gradle.parallel=true
org.gradle.configuration-cache=true
org.gradle.parallel=true
# configuration cache is disabled because it breaks publishing
# https://github.com/gradle/gradle/issues/22779
org.gradle.configuration-cache=false
org.gradle.caching=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app"s APK
Expand Down

0 comments on commit ffa75d9

Please sign in to comment.