我在构建成绩时遇到此错误
错误:任务':app:processDebugResources'的执行失败。 >没有 奴隶进程处理工作,中止
的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')}
答案 0 :(得分:4)
No slave process to process jobs, aborting android studio 3.0.1中提到了这个帖子,我遇到了同样的问题。 (错误不是在收缩= false,minify = false,invalidte cache)。
解决这个问题的简单解决方案是关闭android studio&重新启动它。不确定为什么“invalidate cache& restart”失败。但似乎Android正在成为新的MSWindows ..(我在论坛上找到了1.5个小时并尝试修复错误..最终它被证明是一个Windows技巧。)
希望这个古老的伎俩会帮助某人......
答案 1 :(得分:3)
在build.gradle中添加shrinkResources true
并尝试构建。
buildTypes {
release {
shrinkResources true
}
}
答案 2 :(得分:0)
就我而言,
我将compile fileTree(include: ['*.jar'], dir: 'libs')
添加到了我的build.gradle(模块:app)
并重建我的项目。
希望这可以帮助!
答案 3 :(得分:-1)
首先进入android studio中的这些设置(first pic)
并检查(second pic)“使用嵌入式JDK(推荐)”
并在build.gradle中添加shrinkResources。
buildTypes { 发布 { shrinkResources为true }
}
最后重建项目。