作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个Gradle脚本,需要对其进行更新才能以更高版本运行。我知道outputFile现在是一个只读属性,在我的一些构建文件中已更新了对它的引用。我有这段代码,我不知道如何在Gradle 4.1中运行它(我刚刚开始学习Gradle / Groovy)。任何帮助,将不胜感激!谢谢!
buildTypes {
release {
applicationVariants.all { variant ->
variant.outputs.each { output ->
output.outputFile = new File(output.outputFile.parent,
output.outputFile.name.replace("-release-unsigned", "")
)
}
}
}
debug {
applicationVariants.all { variant ->
variant.outputs.each { output ->
output.outputFile = new File(output.outputFile.parent,
output.outputFile.name.replace("-debug", "")
)
}
}
}
最佳答案
这达到了目的:
buildTypes {
release {
applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "${variant.name}.apk"
}
}
}
debug {
applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "${variant.name}.apk"
}
}
}
}
关于android - 如何更新Gradle 4.1的output.outputFile.name.replace?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48426621/
我是一名优秀的程序员,十分优秀!