suchen

Heim  >  Fragen und Antworten  >  Hauptteil

android - No signature of method: java.lang.Boolean.call()

项目从 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')
}

巴扎黑巴扎黑2771 Tage vor1460

Antworte allen(1)Ich werde antworten

  • PHP中文网

    PHP中文网2017-04-18 09:08:32

    暂时解决了,是 .9 图片引发的问题 ,修改掉所有 .9 图片编译成功,但感觉不是问题的根本原因

    Antwort
    0
  • StornierenAntwort