I am facing issue with Android Studio 3, gradle android plugin 3 with build target 27 and support lib 27.0.0
Error:Execution failed for task \':module:mockab
Simply cleanup the existing jar before running the task again. Running clean
does work, but it's a little intense in my opinion. Instead, make the android-generated task depend on a very specific cleanup task:
task cleanAndroidMock(type: Delete) {
description = 'Deletes the mockable Android jar'
delete fileTree("${project.buildDir}/generated") {
include 'mockable-android*.jar'
}
}
project.afterEvaluate {
tasks['mockableAndroidJar'].dependsOn cleanAndroidMock
}