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

时间:2015-12-01 15:14:56

标签: android android-studio

我正在使用Android-Studio。
当我试图编译项目时,我收到了错误:

Error:Execution failed for task ':app:processDebugResources'.
> at index 4

build.gradle文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
    applicationId "com.myapp.user.myapp"
    minSdkVersion 15
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.parse.bolts:bolts-android:1.+'
compile 'com.parse:parse-android:1.+'
}

有任何建议吗?谢谢!

2 个答案:

答案 0 :(得分:0)

变化:

此: buildToolsVersion" 23.0.2"

要: buildToolsVersion" 21.0.1"

较新的buildTools有时会出现一些错误

答案 1 :(得分:0)

今天我遇到了同样的问题。这就是我修复它的方法:

  1. 检查是否安装了最新的23.0.3构建工具。在我的情况下(如下所示),我注意到它没有安装: Install the 23.0.3 SDK Build-tools

  2. 然后,在我的app level build.gradle中,我更改了这个:

    android {
        compileSdkVersion 23
        buildToolsVersion "23.0.2"
    

    android {
        compileSdkVersion 23
        buildToolsVersion "23.0.3"
    
  3. 希望这有助于最近遇到此问题的任何人。