本文分要點(diǎn)及具體內(nèi)容拧晕,要點(diǎn)看不明白可以查看具體內(nèi)容。
要點(diǎn):
- 使用gradle命令:
./gradlew :android:assembleDebug --dry-run --profile (android是module名稱) - 配置gradle.properties梅垄,在電腦中./gradle根目錄配置厂捞,在AS創(chuàng)建項(xiàng)目時(shí)候自動(dòng)加上此配置。
org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
org.gradle.parallel=true
org.gradle.configureondemand=true ```
或者使用該命令:
``` ./gradlew :android:assembleDebug --dry-run --profile --configure-on-demand ```
## Project-wide Gradle settings.
#
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
#
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx1024m -XX:MaxPermSize=256m
org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=4096m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
#
# The Gradle daemon aims to improve the startup and execution time of Gradle.
# When set to true the Gradle daemon is to run the build.
org.gradle.daemon=true
#
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
org.gradle.parallel=true
#
# Enables new incubating mode that makes Gradle selective when configuring projects.
# Only relevant projects are configured which results in faster builds for large multi-projects.
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:configuration_on_demand
org.gradle.configureondemand=true
### 具體內(nèi)容:
我們在學(xué)習(xí)大部分語言(Android队丝、iOS等)時(shí)候靡馁,都要去考慮這種語言的生命周期,gradle也不例外机久,它的編譯過程大概分為3個(gè)階段(具體gradle理論知識可以自行研究):
* 初始化:掃描項(xiàng)目臭墨,找出哪些內(nèi)容需要被編譯(indexing)
2. 配置:運(yùn)行build.gradle腳本,創(chuàng)建任務(wù)圖(downloading)
3. 執(zhí)行:構(gòu)建你APP有用的部分
根據(jù)這一系列過程膘盖,我們以GitHub上的一個(gè)demo進(jìn)行說明胧弛,項(xiàng)目地址如下:http://github.com/google/iosched
1. 使用dry-run(能夠讓gradle去跳過所有任務(wù)的執(zhí)行)。
gradle執(zhí)行過程需要做大量工作侠畔,我們可以考慮结缚,讓它執(zhí)行必須做的事情。
如果是新項(xiàng)目并且首次執(zhí)行以下命令软棺,會(huì)去拉取所需的依賴红竭,以后build會(huì)加快,命令如下:
```./gradlew :android:assembleDebug --dry-run ```
其中喘落,android 是module名稱
可以通過生成編譯報(bào)告茵宪,查看具體編譯時(shí)間
```./gradlew :android:assembleDebug --dry-run --profile
open build/reports/profile/profile-2017-05-29-20-29-14.html```
![image.png ](http://upload-images.jianshu.io/upload_images/1631967-740f241b0dfe88a3.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/480)
![image.png](http://upload-images.jianshu.io/upload_images/1631967-dfbc3aa1b7e5af41.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/480)
![image.png](http://upload-images.jianshu.io/upload_images/1631967-5c5b047245400de4.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/480)
2.啟用按需配置,提升大概15%
```./gradlew :android:assembleDebug --dry-run --profile --configure-on-demand```
它不是默認(rèn)啟用的瘦棋,所以需要手動(dòng)開啟稀火,我們可以通過在電腦目錄.gradle/gradle.properties加一行配置全局使用它:
```org.gradle.configureondemand=true ```
![image.png](http://upload-images.jianshu.io/upload_images/1631967-640f86af7306371d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/480)
3.開啟gradle單獨(dú)的守護(hù)進(jìn)程
``` ./gradlew :android:assembleDebug --dry-run --no-daemon ```
vs.
``` ./gradlew :android:assembleDebug --dry-run --daemon ```
![image.png](http://upload-images.jianshu.io/upload_images/1631967-61162189bd12ee69.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/480)
4.避免繁重的計(jì)算(這個(gè)得具體問題具體分析了)
嘗試去減少gradle構(gòu)建時(shí)的IO輸出,使用Groovy語言兽狭,修改build.gradle中的一些腳本的實(shí)現(xiàn)憾股。
5.不要?jiǎng)討B(tài)使用依賴
gradle允許你指定項(xiàng)目中依賴包的范圍,gradle嘗試去找最新的版本,這就消耗了gradle的靈活性箕慧。
```dependencies {
compile 'com.google.code.gson:gson:2.+'
}```
這樣不僅會(huì)減慢你的項(xiàng)目編譯服球,同時(shí)也會(huì)失去了重復(fù)性的構(gòu)建。
6.模塊化項(xiàng)目和并行化編譯
模塊化項(xiàng)目可以并行編譯颠焦,并行工程的配置斩熊,復(fù)用之前的項(xiàng)目,項(xiàng)目得到及時(shí)檢查伐庭,在項(xiàng)目編譯過程中使用了預(yù)編譯
```org.gradle.parallel=true```
7.及時(shí)更新新版本
gradle是一個(gè)比較復(fù)雜的‘怪物’粉渠,大多數(shù)的項(xiàng)目隨著每個(gè)release版本越來越快分冈,所以用最新的版本有很大意義。
### 參考文獻(xiàn):
1. [6個(gè)技巧加速你的gradle編譯](http://www.reibang.com/p/2ff3717199da)
2. [優(yōu)化Android Studio/Gradle構(gòu)建](http://www.cnblogs.com/hujihon/p/4843170.html)