如果 classpath 无法获取(第一次 classpath 没有下载,其实如果有的话直接命中缓存了),你尝试了:
- 在 AS 中设置 proxy
- 清除缓存
- 使用阿里云镜像
这些都不管用的话可以看下这里。
或者执行 gradle 的时候出现这样的问题:
Plugin [id: 'org.gradle.kotlin.kotlin-dsl', version: '1.3.4'] was not found in any of the following sources:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'org.gradle.kotlin.kotlin-dsl:org.gradle.kotlin.kotlin-dsl.gradle.plugin:1.3.4')
Searched in the following repositories:
Gradle Central Plugin Repository
我也遇到这个问题,经过搜索看到这里
csdn
找到 gradle 的全局配置 ~/.gradle/gradle.properties
里面如果有设置全局代理,删掉
systemProp.http.proxyHost=127.0.0.1
systemProp.http.proxyPort=7891
systemProp.https.proxyHost=127.0.0.1
systemProp.https.proxyPort=7891