Gradle 生成 gradlew 设置版本及属性
Gradle gradlew About 636 words生成 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
Views: 7,170 · Posted: 2019-08-30
————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb/LiteNote扫描下方二维码关注公众号和小程序↓↓↓
Loading...