分析构建
在开始调整 Gradle 构建以获得性能之前,你应该建立一个基线并确定构建的哪些部分花费的时间最多。为此,你可以通过将 --profile
参数添加到 Gradle 命令来配置构建 :
gradle --profile
./gradlew --profile
构建完成后,你将在 ./build/reports/profile/
下看到构建的 HTML 配置文件报告,如下所示:
通过单击“ 摘要” 旁边的选项卡,你可以看到更详细的故障时间细分。
在开始调整 Gradle 构建以获得性能之前,你应该建立一个基线并确定构建的哪些部分花费的时间最多。为此,你可以通过将 --profile
参数添加到 Gradle 命令来配置构建 :
gradle --profile
./gradlew --profile
构建完成后,你将在 ./build/reports/profile/
下看到构建的 HTML 配置文件报告,如下所示:
通过单击“ 摘要” 旁边的选项卡,你可以看到更详细的故障时间细分。