Gradle 生成 gradlew 设置版本及属性
Gradle gradlew 大约 636 字生成 gradlew 命令
gradle wrapper
4.8 之前
// Configuring the wrapper, the old way (gradle < 4.8 )
// see https://docs.gradle.org/4.4/userguide/gradle_wrapper.html#sec:wrapper_generation
task wrapper(type: Wrapper) {
gradleVersion = '4.4'
distributionType = Wrapper.DistributionType.BIN
}
4.8 之后
// Configuring the wrapper, the new way (since Gradle 4.8)
// see https://docs.gradle.org/current/userguide/gradle_wrapper.html#customizing_wrapper
wrapper{
gradleVersion = '5.1'
distributionType = Wrapper.DistributionType.BIN
}
参考
https://stackoverflow.com/questions/53521437/how-to-declare-gradle-version-5-0-in-build-gradle
阅读 4765 · 发布于 2019-08-30
————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb扫描下方二维码关注公众号和小程序↓↓↓

昵称: