Don't use gradle build cache
Not using the cache dramatically improve build speed since we will not
pack the cache for every incremental change.
The sharing across gradle invocations that this is meant for is
questionable at best (just changing a build.gradle.kts file will make
main recompile unconditionally not hitting the cache)
Change-Id: Ic22442fdad14a7c820e32af6b869fa8d4e486795
diff --git a/d8_r8/gradle.properties b/d8_r8/gradle.properties
index 35bcb0b..a82d85e 100644
--- a/d8_r8/gradle.properties
+++ b/d8_r8/gradle.properties
@@ -10,7 +10,7 @@
kotlin.incremental.useClasspathSnapshot=true
org.gradle.parallel=true
-org.gradle.caching=true
+org.gradle.caching=false
org.gradle.configuration-cache=true
# Do not download any jdks or detect them. We provide them.