這篇文章主要講解了android studio 3.6.1導入項目報錯提示無法下載classpath里的內容怎么辦,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
創(chuàng)新互聯(lián)公司主要從事成都網(wǎng)站建設、做網(wǎng)站、網(wǎng)頁設計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務。立足成都服務旬陽,十載網(wǎng)站建設經(jīng)驗,價格優(yōu)惠、服務專業(yè),歡迎來電咨詢建站服務:18980820575
報錯:
Caused by: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all artifacts for configuration ‘:classpath'.
原因:
百度說是無法下載classpath里的內容,具體不是很清楚
解決方法:
百度到了很多方法,單個嘗試都解決不了,然后把解決方法結合
在build.gradle里
buildscript { repositories { google() mavenCentral() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.6.1' } } allprojects { repositories { google() maven { url 'https://maven.google.com' } jcenter() } }
然后要到gradle\wrapper\gradle-wrapper.properties里把distributionUrl換成你本地的。
看完上述內容,是不是對android studio 3.6.1導入項目報錯提示無法下載classpath里的內容怎么辦有進一步的了解,如果還想學習更多內容,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。