Android Studio Gradle 下载速度慢解决方法¶
更新日期: 2023-3-9
- 2023-3-12 新增例子
- 2023-3-9 Mac手动下载gradle安装
- 2021-10-22 更新说明
- 2021-3-26 创建文档
有时候gradle下载的时候很慢,要等很久。或者提示下载失败。
gradle换源¶
我们可以使用阿里云的源。不使用jcenter。
修改buildscript的repositories和allprojects中的repositories即可。
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.31'
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
google()
// jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
// jcenter()
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
更换后,下载速度快很多。
Mac手动下载gradle安装¶
有时候因为网络原因,as下载gradle总是失败。但是点开链接,又能从浏览器下载得到zip包。此时我们考虑手动把gradle装进去。
例如as提示说无法下载 https://downloads.gradle-dn.com/distributions/gradle-5.6.4-all.zip
用浏览器下载得到gradle-5.6.4-all.zip
打开终端,进入.gradle
目录,再用finder打开
在 ~/.gradle/wrapper/dists/gradle-5.6.4-all
里有一个as创建的目录,比如 ankdp27end7byghfw1q2sw75f
把gradle-5.6.4-all.zip放进去,重启as即可
又或者提示下载 gradle-6.7.1-bin.zip,手动下载
把zip放入目录 ~/.gradle/wrapper/dists/gradle-6.7.1-bin/bwlcbys1h7rz3272sye1xwiv6
,重启as即可
本站说明
一起在知识的海洋里呛水吧。广告内容与本站无关。如果喜欢本站内容,欢迎投喂作者,谢谢支持服务器。如有疑问和建议,欢迎在下方评论~