Android Studio里Gradle Sync同步慢问题的解决方法

Posted zxdplay

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Studio里Gradle Sync同步慢问题的解决方法相关的知识,希望对你有一定的参考价值。

android studio更新到3.3.1,完成后,gradle sysnc一直同步,1个小时后还在转圈圈。同步慢的不能忍受。

如何解决,网上一搜,发现阿里云有镜像,只需要添加相应的url地址就可以下载。如图,在gradle scripts–>build gradle。打开该文件。

技术图片

buildscript 
    
    repositories 
        maven url ‘http://maven.aliyun.com/nexus/content/groups/public/‘
        google()
        jcenter()
    
    dependencies 
        classpath ‘com.android.tools.build:gradle:3.3.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()
    

注意:添加的是maven url ‘http://maven.aliyun.com/nexus/content/groups/public/’,不要把google()和
jcenter()屏蔽掉,我开始把这两句注释掉,根本不能同步。

 

原文 http://www.wangluoshenghuo.com/2019/02/15/android-studio%E9%87%8Cgradle-sync%E5%90%8C%E6%AD%A5%E6%85%A2%E9%97%AE%E9%A2%98%E7%9A%84%E8%A7%A3%E5%86%B3%E6%96%B9%E6%B3%95/

以上是关于Android Studio里Gradle Sync同步慢问题的解决方法的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio build gradle project info 卡主不动解决方法.

Android Studio里Gradle Sync同步慢问题的解决方法

android studio本地gradle

如何向Android Studio里导入从Github上面下载的Project?

如何使用Android Studio 开发Gradle插件

如何在Android Studio里设置Build Tool版本