首页 文章

android build gradle error(android 3.1.3)?连接超时:连接

提问于
浏览
0

我的gradle构建无法获得

'https://jcenter.bintray.com/com/android/tools/build/gradle/3.1.3/gradle-3.1.3.pom'.166内部呼叫

'https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.1.3/gradle-3.1.3.pom'

我的构建gradle

// Top-level build file where you can add configuration options common to 
    all sub-projects/modules.

buildscript {

   repositories {
    google()
    jcenter()
  }
dependencies {
    classpath 'com.android.tools.build:gradle:3.1.3'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
 }
 }

allprojects {
   repositories {
    google()
    jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
 }

Gradle包装适当

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

1 回答

  • 0

    你的PC上有防毒剂吗?尝试关掉它..我有同样的问题:

    无法获取资源https://jcenter.bintray.com/com/android/databinding/compiler/3.1.3/compiler-3.1.3.pom

    我的PC上有Kasperskiy Internet Secirity . 我可以在禁用项目后立即修改项目,然后转到文件 - >无效缓存并重新启动 . 然后项目成功 Build . 然后我启用KIS,可以毫无问题地构建项目 .

相关问题