Could not resolve all files for configuration ':app:debugCompileClasspath'.解決方案


異常如下:

Error:FAILURE: Build failed with an exception.

* What went wrong:
Could not resolve all files for configuration ':app:debugCompileClasspath'.
> Could not resolve com.google.android.gms:play-services-ads:latest.release.
Required by:
project :app
> Could not resolve com.google.android.gms:play-services-ads:12.0.1.
> Could not get resource 'https://jcenter.bintray.com/com/google/android/gms/play-services-ads/12.0.1/play-services-ads-12.0.1.pom'.
> Could not GET 'https://jcenter.bintray.com/com/google/android/gms/play-services-ads/12.0.1/play-services-ads-12.0.1.pom'.
> Read timed out

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 35s
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
解決方案如下:
在project級別下的build.gradle文件中添加如下代碼:

buildscript {

repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.1' //這里不用和我一樣,和你項目里面的版本一樣就行
classpath 'com.google.gms:google-services:4.0.1' //這行對谷歌服務庫進行依賴

}
}

allprojects {
repositories {
google()
jcenter()
mavenCentral ()
maven {url 'https://dl.bintray.com/jetbrains/anko'} //這是你需要加入的,這個是解決這個問題的關鍵地方,我就是添加這個maven后不再報上面的錯誤了
maven {url "https://maven.google.com"} //谷歌廣告
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}
---------------------
作者:晨諾星空
來源:CSDN
原文:https://blog.csdn.net/wjj1996825/article/details/80900875
版權聲明:本文為博主原創文章,轉載請附上博文鏈接!


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM