Android Studio 无法获取 gradle 依赖提示

2020-09-15  本文已影响0人  pdog18

如果 classpath 无法获取(第一次 classpath 没有下载,其实如果有的话直接命中缓存了),你尝试了:

或者执行 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
上一篇 下一篇

猜你喜欢

热点阅读