Android Studio:Gradle无法解析依赖项

时间:2015-08-19 09:02:53

标签: android android-studio gradle

我正在尝试构建导入的项目。

流程" Gradle:解决依赖关系':app:_debugCompile'"继续运行

所以我搜索了互联网,发现我需要在终端中运行gradlew build --stacktrace --debug

然后我看到,在某些时候Android Studio会尝试这样做:

Connecting to 10.153.20.12:8080

然后连接失败并且构建失败:

 FAILURE: Build failed with an exception.
 * What went wrong:
 A problem occurred configuring root project 'MyProject'.
 > Could not resolve all dependencies for configuration ':classpath'.
   > Could not resolve com.android.tools.build:gradle:1.2.3.
 Required by:           
     :MyProject:unspecified
  > Could not resolve com.android.tools.build:gradle:1.2.3.
     > Could not get resource 'https://jcenter.bintray.com/com/android/tools/build/gradle/1.2.3/gradle-1.2.3.pom'.
        > Could not GET 'https://jcenter.bintray.com/com/android/tools/build/gradle/1.2.3/gradle-1.2.3.pom'.
           > Connection to http://10.153.20.12:8080 refused

P.S。:其他项目没有问题构建

P.P.S。:同样的东西发生在不同的计算机上

这是我的应用:build.gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "ru.myrunner.myrunner"
        minSdkVersion 15
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.pkmmte.view:circularimageview:1.1'
    compile 'com.android.support:appcompat-v7:22.2.1'
    compile 'com.android.support:cardview-v7:22.2.1'
    compile 'com.google.android.gms:play-services:7.8.0'
    compile 'com.android.support:recyclerview-v7:22.2.1'
}

编辑:显然,问题在于

compile 'com.pkmmte.view:circularimageview:1.1'

1 个答案:

答案 0 :(得分:4)

答案是在gradle.properties文件中,以前的开发人员放置了代理设置。这就是为什么我的AS无法连接到10.153.20.12:8080

我只是对该文件中的所有内容进行了评论,但它确实有效。

circularimageview的问题是因为它是一个新的库,因此我的AS必须从互联网上下载,因为代理服务器不可用而无法这样做。

相关问题