错误:任务执行失败':app:processDebugResources'

时间:2017-03-03 09:20:26

标签: java android

当我尝试构建项目时,Messages Gradle Build会报告以下消息:

失败:构建因异常而失败。

  • 出了什么问题: 任务':app:processDebugResources'执行失败。
      

    java.lang.IllegalArgumentException(无错误消息)

Gradle文件

android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
defaultConfig {
    applicationId "com.example.bolt.skola"
    minSdkVersion 17
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}


}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})

compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.roughike:bottom-bar:1.3.9'


compile 'com.google.android.gms:play-services-identity:10.2.0'
compile 'com.google.android.gms:play-services-plus:10.2.0'
compile 'com.google.android.gms:play-services-gcm:10.2.0'



testCompile 'junit:junit:4.12'
}

3 个答案:

答案 0 :(得分:0)

我有同样的问题,我编辑我的包名..问题解决了

答案 1 :(得分:0)

很可能你的XML中有一个没有正确ID的项目

<Button android:id="@+id/"/>

编译器很难检测到原因。

答案 2 :(得分:0)

转到清单文件并检查包名称 -

包= “com.shaon.rastarchele.leet.subcse” &GT;像这样

例如,请参阅图片附件enter image description here