任务执行失败':app:mergeDebugResources'

时间:2017-01-30 07:44:05

标签: android

错误:任务':app:mergeDebugResources'执行失败。

  

错误:java.util.concurrent.ExecutionException:com.android.ide.common.process.ProcessException:   错误:java.util.concurrent.ExecutionException:com.android.ide.common.process.ProcessException:

GRADLE CONSOLE OUTPUT:

Executing tasks: [:app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:prepareDebugUnitTestDependencies]

Configuration on demand is an incubating feature.
Incremental java compilation is an incubating feature.
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAnimatedVectorDrawable2510Library UP-TO-DATE
:app:prepareComAndroidSupportAppcompatV72510Library UP-TO-DATE
:app:preDebugAndroidTestBuild UP-TO-DATE
:app:prepareComAndroidSupportMultidex101Library UP-TO-DATE
:app:prepareComAndroidSupportSupportCompat2510Library UP-TO-DATE
:app:prepareComAndroidSupportSupportCoreUi2510Library UP-TO-DATE
:app:prepareComAndroidSupportSupportCoreUtils2510Library UP-TO-DATE
:app:prepareComAndroidSupportSupportFragment2510Library UP-TO-DATE
:app:prepareComAndroidSupportSupportMediaCompat2510Library UP-TO-DATE
:app:prepareComAndroidSupportSupportV42510Library UP-TO-DATE
:app:prepareComAndroidSupportSupportVectorDrawable2510Library UP-TO-DATE
:app:prepareComAndroidVolleyVolley100Library UP-TO-DATE
:app:prepareDebugDependencies
:app:compileDebugAidl UP-TO-DATE
:app:compileDebugRenderscript UP-TO-DATE
:app:generateDebugBuildConfig UP-TO-DATE
:app:generateDebugResValues UP-TO-DATE
:app:generateDebugResources UP-TO-DATE
:app:mergeDebugResources
Error: java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException: 
:app:mergeDebugResources FAILED

FAILURE: Build failed with an exception.
  • 出了什么问题: 任务':app:mergeDebugResources'执行失败。

      

    错误:java.util.concurrent.ExecutionException:com.android.ide.common.process.ProcessException:

  • 尝试: 使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获得更多日志输出。

建立失败

任何人都可以帮我解决这个问题。我是android新手:(

I have added a screen shot of Android Manifest.

到目前为止,我已尝试以下步骤来解决此问题。仍然没有帮助。
1)清洁Prjoect
2)重建项目
3)文件>无效的缓存/重新启动

的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.theaquarious.myfavapp"
        minSdkVersion 14
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }
    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.1.0'
    testCompile 'junit:junit:4.12'
    compile 'com.mcxiaoke.volley:library:1.0.19'
}

4 个答案:

答案 0 :(得分:2)

此问题现已解决。由于图像文件引发了错误。我已经将JPG图像的扩展名更改为PNG而不使用任何编辑器。由于这个android工作室开始抛出错误。感谢所有试图帮助我的人。如果有人需要对此进行更多澄清,请发表评论。

答案 1 :(得分:0)

这似乎是在某个Java线程中获取锁定时的错误。我最近在Windows 7 PC上看到了这一点。我通过简单地运行任务管理器然后杀死java.exe进程获得了成功。如果我再试一次,那么构建似乎工作正常。

答案 2 :(得分:0)

错误是因为Drawable文件夹中保存的文件的名称无法大写。重命名文件并将所有内容保留为小写。

答案 3 :(得分:-1)

不要在大写情况下保存可绘制图像,它应该是png而不是jpg否则会引发错误:任务执行失败':app:mergeDebugResources'