Gradle builds really slow with a multi-project structure

19,676

Solution 1

Doing a clean you actually delete the already predexed libraries.
As suggested in this thread you could save some time on clean builds by disabling predexing (because at the next build they will be deleted):

android {
  dexOptions {
    preDexLibraries = false
  }
}

Solution 2

According to this post.

Right now each project will pre-dex its dependencies on its own. This means 2 components depending on the same library will both run pre-dex on that library's classes.jar which is silly. We're looking at fixing this.

Solution 3

Did you try setting the parameters of the Gradles compiler?

If you have remote dependencies, each time you run the project it will be operated with remote resources using the network. You should define the instruction to the Gradles compiler to that him to work offline using:

--offline

Here I leave you a screenshot of the compiler settings for better performance:

enter image description here

Or what is the same...

enter image description here

Source: http://gradle.org/docs/current/userguide/gradle_command_line.html

Share:
19,676
prolink007
Author by

prolink007

I am a Computer Engineer. Things listed below are just a few things i am knowledgeable of: C/C++/C#, java, QT, Android, linux, Object Oriented, Assembly, computer architecture, MIPS, msp430, networking, html, php, css, mysql, sqlite, oracle, xsl, several interpreted languages

Updated on June 17, 2022

Comments

  • prolink007
    prolink007 about 2 years

    When building with gradle on a multi-project setup containing roughly 140 projects/libraries, the build time took 1 hour and 22 minutes. And i was using --parallel. And our ANT build takes less than 20 minutes without parallel building.

    Here is exactly what i did.

    ./gradlew clean
    ./gradlew build --parallel
    

    I did a little testing it seems like the dexing is taking the longest amount of time. Is there a way to get the gradle process to re-use the stuff it has already dexed? If the libraries have already been built, it should re-use the already dexed libraries.

    I saw the option --no-rebuild, but when i run with that option it says the following

    File '/path/to/project/build/libs/project.aar' specified for property 'bundle' does not exist.
    

    I replaced the file path and project name with generic stuff.

    Using Gradle 1.9-rc-3


    Additional information(15 Jan 2014):

    preDexDebug and preDexRelease took a VERY long time on each project. Much longer than any other task.


    Progress(15 Jan 2014):

    Ok, for now, i put preDexLibraries = false into all of the build.gradle files. However, i still would like to know a centralize place that i can put that entry and it affect all the other build.gradle files.

    However, now dexRelease and dexDebug are taking a long time. Is there any way that i can tell the build to only do the dexDebug or dexRelease and skip the other one?


    Progress(15 Jan 2014):

    Using assembleDebug worked. However, it still seems like it is not re-using the already dexed libraries. Because dexing is still taking forever. It takes about a minute for each project. Is there a way to get gradle to re-use the already dexed libraries? Or is there a different reason why the build is still taking about an hour? Our ANT process takes less than 15 minutes.