Gradle配置文件配置缓慢

时间:2019-01-22 17:30:30

标签: android gradle android-gradle

这个:项目占用了我的配置时间的75%以上是什么?其余模块确实非常快。enter image description here

2 个答案:

答案 0 :(得分:0)

我相信这将是您的assembleDebug或类似的构建配置文件。

您对此可以做什么?

  1. 阅读这篇中等职位,其中详细介绍了类似情况的技术知识:How to decrease your gradle build time

  2. 浏览幻灯片,它们可以帮助您确保加快构建速度,包括构建配置和总体项目配置:Mastering Gradle 3.0

希望这会有所帮助! :)

答案 1 :(得分:0)

尝试将https://jakewharton.com/tracing-gradle-task-execution/与./gradlew帮助任务上的Chrome跟踪选项一起使用。这将生成深度详细的配置过程图形报告。您可能会看到自己的构建正在忙什么。

另请参阅:https://youtu.be/sQC9-Rj2yLI?t=2022

和:enter image description here