0

我有一个函数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
}
4

0 回答 0