1
我在嘗試調用build.gradle
中的自定義方法時遇到錯誤。使用MissingMethodException在build.gradle中找不到自定義方法
在build.gradle
文件:
def func() {
String str = "hello world!"
str
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
String str = func()
println "$str"
...... // Other code
}
}
我得到的錯誤是如下:
Caused by: org.gradle.api.internal.MissingMethodException: Could not find method func() for arguments [] on org.gradle.api.interna[email protected]1c86d7b4.