Skip to content Skip to sidebar Skip to footer

Gradle Is Taking A Long Time To Build

All of a sudden my gradle build has become really really slow seams like its doing some extra work that it didn't used to do here is a picture from build : as you can see there are

Solution 1:

  • In gradle setting check work offline.
  • Clean and rebuild your project.
  • In gradle.properties in Gradle scripts directory(i.e., ~/.gradle/gradle.properties), add

    org.gradle.parallel=trueorg.gradle.daemon=true

This settings have helped me a lot.

Post a Comment for "Gradle Is Taking A Long Time To Build"