在我的 init.gradle 我有
...
// the last thing in init.gradle
def buildTime() {
def df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'") //you can change it
df.setTimeZone(TimeZone.getTimeZone("UTC"))
return df.format(new Date())
}
在我的 build.gradle 我想做这样的事情:
task showTime() << {
println buildTime()
}
但我得到“在根项目上找不到参数 [] 的方法 buildTime()...”
提前谢谢!