2015-08-19 61 views
3

我正尝试构建导入的项目。Android Studio:Gradle无法解决依赖问题

过程“摇篮:解决依赖‘:应用程序:_debugCompile’”只是继续运行

于是我在网上搜索,发现我需要运行gradlew建立--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 

PS:其他项目的建设没有问题

PPS:同样的事情发生在不同的计算机

这里是我的应用程序:文件的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' 
+0

您可以发布Gradle代码来声明您的位置1.任何远程回购2.您的项目的依赖关系? – Jolta

+0

@Jolta更新。这不是我的项目,但我需要处理它 –

+0

机器是否连接到互联网?在我看来,错误消息中的URL是有效的:(https://jcenter.bintray.com/com/android/tools/build/gradle/1.2.3/gradle-1.2.3.pom) – Jolta

回答

4

答案是躺在gradle.properties文件中,其中previo我们的开发者把代理设置。这就是为什么我的AS无法连接到10.153.20.12:8080

我只是评论该文件中的所有内容,它的工作。

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