Hello! <@U6S5Z9F8F> encouraged me to post about my...
# gradle
t
Hello! @eriwen encouraged me to post about my experience with Gradle Build Cache in this channel (https://twitter.com/eriwen/status/961293359674359808?s=03). Here are the results of using the build cache on five successive builds:
Copy code
./gradlew clean assembleDebug

  1:25  56 actionable tasks: 55 executed, 1 from cache
        <https://gradle.com/s/ndeo7lsx737wg>
  1:12  56 actionable tasks: 22 executed, 32 from cache, 2 up-to-date
        <https://gradle.com/s/eicggq4tufczi>
  1:09  56 actionable tasks: 22 executed, 32 from cache, 2 up-to-date
        <https://gradle.com/s/gwgwggvcjkhwo>
  1:05  56 actionable tasks: 22 executed, 32 from cache, 2 up-to-date
        <https://gradle.com/s/34mv4tw6pmox6>
  1:05  56 actionable tasks: 22 executed, 32 from cache, 2 up-to-date
        <https://gradle.com/s/6edzlp7qqoi4c>
The numbers on the left are in m:ss format, and I've attached the gradle build scan for each Some notes: my project is an Android project with multidex enabled, but for these runs I set the minSdk to 21 per the Android documentation on this feature