我有一个函数properties.gradle
,我将该函数用作 ext 函数。我想concat
在 kotlin dsl 脚本中使用相同的 ext 函数buildSrc
,但出现以下错误:
Unresolved reference: concat
.
properties.gradle
文件:
ext {
concat = this.&concat
}
String concat(String name, String defaultValue) {
return name + defaultValue
}
这buildSrc/Libs.kt
class Libs {
val someField = concat("1", "2") // <- concat here cannot be resolved
}