Reprint _ Accelerate Android Studio/gradle build

Source: Internet
Author: User

Turn from: Accelerate Android Studio/gradle Build

With the increase of the project, relying on the increase of the library, the construction speed is more and more slow, now the slowest 6 minutes to build a release of the installation package, find the information on the Internet, found that can be configured to speed up through some configuration, here to share with you.

Turn on gradle separate daemon

Create the file under the following directory gradle.properties :

    • /home/<username>/.gradle/(Linux)
    • /Users/<username>/.gradle/(MAC)
    • C:\Users\<username>\.gradle(Windows)

and add in the file:

1 Org.gradle. daemon=true

Modifying the files under the project gradle.properties can also be optimized:

12345678910111213141516171819202122232425262728 # project-wide Gradle settings.# IDE (e.g. Android Studio) Users:# Settings specified in this file would override any Gradle Settings# configured through the IDE.# For more details about how to Configure your build environment visit# http://www.gradle.org/docs/current/userguide/build_environment.html# The Gradle daemon aims to improve the startup and execution time of Gradle.# When set to True the Gradle daemon are to run the build.# todo:disable Daemon on CI, since builds should is clean and reliable on serversorg.gradle.daemon=true# Specifies the JVM arguments used for the daemon process.# The setting is particularly useful for tweaking memory settings.# Default Value:-xmx10248m-xx:maxpermsize=256mOrg.gradle.jvmargs=-xmx2048m-xx:maxpermsize=512m-xx:+heapdumponoutofmemoryerror-dfile.encoding=utf-8 # When configured, Gradle'll run in incubating parallel mode.# This option is should only is used with decoupled projects. More details, visit# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projectsOrg.gradle.parallel=true# enables new incubating mode that makes Gradle selective when configuring projects.# Only relevant projects is configured which results in faster builds for large multi-projects.# Http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:configuration_on_demandOrg.gradle.configureondemand=true

At the same time, these parameters can also be configured in the previous user directory in the gradle.properties file, so it is not for a project to take effect, but for all projects to take effect.

The above configuration file is mainly to do, increase the size of Gradle running Java Virtual machine, let gradle at compile time use independent process, let Gradle can run parallel.

Modify the Android Studio configuration

In the configuration of Android Studio, turn on offline mode and modify the configuration. The actual configuration is the same as in the above section, where the configuration is only effective when the IDE is built and the command-line build does not take effect.

Command line Build

Based on the above configuration, the command line is built with this parameter appended to the command --daemon --parallel --offline .

Using AAR when importing dependent libraries

Use AAR as much as possible using the Web-based third-party dependency library, which can be searched in mavenhttp://gradleplease.appspot.com/or Githuhttps://github.com/goddchen/mvn-repo.

Own library module can also be packaged into AAR, about this can refer to Stormzhang article http://www.stormzhang.com/android/2015/03/01/android-reference-local-aar/.

Postscript

After such a toss, I originally need 4, 5 minutes to build the completed project, now only 30 seconds or so can be built to complete. Of course, if you do not do so, then, you should change the computer, SSD hard disk, larger memory, must be on the.

Original address: http://blog.isming.me/2015/03/18/android-build-speed-up/, reproduced please indicate the source.

Reprint _ Accelerate Android Studio/gradle build

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.