1.
Android Studio -> preferences... -> Build, Execution, Deployment -> Build Tools -> Gradle
Check the 'Offline work' under 'Global Gradle settings'
It will reduce 90% gradle build time.
将offline work选项关闭,否则不在线下载依赖

2.Android Studio出现Failed to open zip file问题的解决方法
Error:Failed to open zip file.
Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)
Re-download dependencies and sync project (requires network)
Re-download dependencies and sync project (requires network)
最简单的方法,亲测有效,就是改一下gradle-wrapper.properties中的distributionUrl将
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
改成
distributionUrl=http\://services.gradle.org/distributions/gradle-4.4-all.zip其实这里的区别就是https和http。
提升Android Studio Gradle构建速度
本文介绍如何通过调整Android Studio的Gradle设置来显著减少构建时间,包括启用离线工作模式和解决Failed to open zip file错误的具体步骤。
5193





