美文网首页
gradle环境问题

gradle环境问题

作者: 码农梦醒 | 来源:发表于2020-11-28 10:33 被阅读0次

    国内gradle无法从gradle官网下载gradle

    从网上下载gradle.zip很慢,可以将其下载下来放在本地目录,将.\项目\gradle\wrapper下的gradle-wrapper.properties中

    gradle-wrapper.properties引用本地gradle-x.x.x-all.zip

    distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip

    替换成

    distributionUrl=file\:///D:/gradle/gradle-2.4-all.zip

    配置gradle使用国内镜像下载jar包

    修改build.gradle

    buildscript {
        repositories {
            maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/' }
            maven{ url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:3.3.0-alpha13'
        }
    }
    allprojects {
        repositories {
            maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
            maven{ url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
        }
    }
    task clean(type: Delete) {
        delete rootProject.buildDir
    }
    

    相关文章

      网友评论

          本文标题:gradle环境问题

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