Android Studio 2020新版本卡在Gradle downloading/sync failed/下載緩慢/下載超時的問題
這個問題卡瞭我三天
頭都疼瞭!
最終解決方法
新建一個項目,然後改兩個文件
build.gradle裡面改成這個:
buildscript { repositories { maven { url "http://maven.aliyun.com/nexus/content/groups/public/" } google() jcenter() } dependencies { classpath "com.android.tools.build:gradle:4.1.1" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { maven { url "http://maven.aliyun.com/nexus/content/groups/public/" } google() jcenter() } } task clean(type: Delete) { delete rootProject.buildDir }
gradle版本我選擇4.1.1 上下兩個文件裡面的gradle版本要統一。
gradle-wrapper.properties這樣改
distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-4.1.1-all.zip
三分鐘下完加載完並且沒有報錯,阿裡雲牛!!!!!
以後凡是和Marven、Gradle這兩個玩意相關的bug和問題,我一律aliyun鏡像解決好吧!
到此這篇關於Android Studio 2020新版本卡在Gradle downloading/sync failed/下載緩慢/下載超時的問題的文章就介紹到這瞭,更多相關Android Studio卡在Gradle下載慢內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Gradle的基本使用
- 教你使用IDEA搭建spring源碼閱讀環境的詳細步驟
- Flutter學習筆記(二)創建一個flutter項目
- Maven倉庫加載順序的實例解析
- 關於Assert.assertEquals報錯的問題及解決