gpt4 book ai didi

安卓工作室 : Gradle fails to resolve dependencies

转载 作者:太空宇宙 更新时间:2023-11-03 13:18:38 25 4
gpt4 key购买 nike

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

进程“Gradle: Resolve dependencies ':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.:同样的事情发生在不同的计算机上

这是我的 app: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'

最佳答案

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

我只是简单地注释了该​​文件中的所有内容,它就起作用了。

circularimageview 的问题是因为它是一个新库,所以我的 AS 不得不从互联网上下载它,但由于代理服务器不可用而未能这样做。

关于安卓工作室 : Gradle fails to resolve dependencies,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32091003/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com