美文网首页
[设置]: 解决Android Studio中Gradle下载过

[设置]: 解决Android Studio中Gradle下载过

作者: 迷之菌 | 来源:发表于2020-04-25 23:30 被阅读0次

    打开Android Studio中根项目下的build.gradle文件,修改其中的代码如下:

    其中需要修改的部分为buildscript下的repositories部分,与allprojects下的repositories部分。AS使用的默认仓库国内访问速度较慢,所以更改为阿里云的仓库源来提升下载速度。

    // Top-level build file where you can add configuration options common to all sub-projects/modules.
    
    buildscript {
        ext.kotlin_version = '1.3.71'
        repositories {
            maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
            maven { url "https://jitpack.io" }
            google()
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:3.6.3'
            classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    
            // 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
    }
    
    

    Android视图下文件位置如下:


    Android视图

    Project视图下文件位置如下:


    Project视图

    相关文章

      网友评论

          本文标题:[设置]: 解决Android Studio中Gradle下载过

          本文链接:https://www.haomeiwen.com/subject/fqfrwhtx.html