项目从 eclipse 导入 android studio中出现这个问题, AS2.2.2, gradle 2.2.2
Error:(6, 1) A problem occurred evaluating project ':projectName'.
No signature of method: java.lang.Boolean.call() is applicable for argument types: (null) values: [null]
Possible solutions: wError:(6, 1) A problem occurred evaluating project ':projectName'.
No signature of method: java.lang.Boolean.call() is applicable for argument types: (null) values: [null]
Possible solutions: wait(), any(), wait(long), any(groovy.lang.Closure), each(groovy.lang.Closure), and(java.lang.Boolean)ait(), any(), wait(long), any(groovy.lang.Closure), each(groovy.lang.Closure), and(java.lang.Boolean)
project 的 gradle 脚本
apply plugin: 'com.android.library'
android {
compileSdkVersion 19
buildToolsVersion "25.0.2"
enforceUniquePackageName = false
aaptOptions{
cruncherEnabled = false
useNewCruncher = false
}
defaultConfig {
minSdkVersion 14
targetSdkVersion 21
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile project(':someLib')
compile files('libs/Authentication_agent32.jar')
}
PHP中文网2017-04-18 09:08:32
일시적으로 해결되었습니다. .9 이미지로 인한 문제였습니다. .9 이미지를 모두 수정하여 컴파일은 성공했지만, 문제의 근본 원인은 아닌 것 같습니다