I have got this Error while building gradle Error:Execution failed for task ':app:processDebugResources'. > No slave process to process jobs, aborting

I have got this Error while building gradle Error:Execution failed for task ':app:processDebugResources'. > No slave process to process jobs, aborting

我在构建等级

时遇到了这个错误

Error:Execution failed for task ':app:processDebugResources'. > No slave process to process jobs, aborting

Build.gradle

 apply plugin: 'com.android.application' android {
    compileSdkVersion 26
    buildToolsVersion "26.0.2"
    defaultConfig {
        applicationId "com.colorball.madness"
        minSdkVersion 14
        targetSdkVersion 26
        multiDexEnabled true
        ndk {
            moduleName "player_shared"
        }}
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        } } }dependencies {
    compile 'com.google.android.gms:play-services:+'
    compile files('libs/dagger-1.2.2.jar')
    compile files('libs/javax.inject-1.jar')
    compile files('libs/nineoldandroids-2.4.0.jar')
    compile files('libs/PTAdRevMob.jar')
    compile 'com.android.support:appcompat-v7:26.1.0'
    compile 'com.android.support:multidex:1.0.1'
    compile files('libs/support-v4-19.0.1.jar')}

在您的 build.gradle 中添加 shrinkResources true 并尝试构建。

buildTypes {
    release {
        shrinkResources true
  }
}
  • 首先在 android studio (first pic)

  • 中进行这些设置
  • 并检查 (second pic) "Use embedded JDK (recommended)"

  • 并在 build.gradle 中添加 shrinkResources true 。

    构建类型{ 发布 { 收缩资源为真 }

    }
    

终于重建项目了。

就我而言, 我将 compile fileTree(include: ['*.jar'], dir: 'libs') 添加到我的 build.gradle(Module:app) 并重建我的项目。 希望这可以帮助!

No slave process to process jobs, aborting android studio 3.0.1 中提到了这个话题,我遇到了完全相同的问题。 (错误不是 in-spite of shrink=false, minify=false, invalidte cache)。

解决问题的简单方法是关闭 android 工作室并重新启动它。不知道为什么 "invalidate cache & restart" 失败了。但似乎 Android 正在成为新的 MSWindows..(我在论坛上查找并试图修复错误时浪费了 1.5 小时.. 最终它变成了 windows 把戏。)

希望这个古老的技巧能对某人有所帮助..