美文网首页
gradle版本修改

gradle版本修改

作者: 土豆吞噬者 | 来源:发表于2019-07-30 17:52 被阅读0次

    修改gradle插件版本

    修改build.gradle中com.android.tools.build:gradle版本号

    buildscript {
        
        repositories {
            google()
            jcenter()
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:3.1.4'
            
    
            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
        }
        tasks.withType(JavaCompile) {
            options.encoding = "UTF-8"
        }
    }
    

    修改gradle版本

    修改gradle-wrapper.properties中的distributionUrl

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

    gradle插件版本与gradle版本的对应关系

    表格来源:https://developer.android.com/studio/releases/gradle-plugin#updating-gradle

    gradle插件版本 gradle版本
    1.0.0 - 1.1.3 2.2.1 - 2.3
    1.2.0 - 1.3.1 2.2.1 - 2.9
    1.5.0 2.2.1 - 2.13
    2.0.0 - 2.1.2 2.10 - 2.13
    2.1.3 - 2.2.3 2.14.1+
    2.3.0+ 3.3+
    3.0.0+ 4.1+
    3.1.0+ 4.4+
    3.2.0 - 3.2.1 4.6+
    3.3.0 - 3.3.2 4.10.1+
    3.4.0+ 5.1.1+

    相关文章

      网友评论

          本文标题:gradle版本修改

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