Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error:Execution failed for task ':lib:compileReleaseAidl'. > Executor Singleton not started

When I import one project into my Android Studio from Github, this happens. How to fix it?

Information:Gradle tasks [:app:generateDebugSources, :app:generateDebugTestSources, :lib:generateDebugSources, :lib:generateDebugTestSources]
:app:preBuild
:app:preDebugBuild
:app:checkDebugManifest
:app:preReleaseBuild
:lib:compileLint
:lib:copyReleaseLint UP-TO-DATE
:lib:preBuild
:lib:preReleaseBuild
:lib:checkReleaseManifest
:lib:preDebugBuild
:lib:preDebugTestBuild
:lib:prepareComAndroidSupportAppcompatV72102Library UP-TO-DATE
:lib:prepareComAndroidSupportCardviewV72102Library UP-TO-DATE
:lib:prepareComAndroidSupportSupportV42102Library UP-TO-DATE
:lib:prepareReleaseDependencies
:lib:compileReleaseAidl FAILED
Error:Execution failed for task ':lib:compileReleaseAidl'.
> Executor Singleton not started
like image 456
Sanpark Avatar asked May 19 '15 02:05

Sanpark


2 Answers

I was facing the same issue, here is what I did:

1- Updated all the project dependencies to latest version (AppCompat,SupportV4,cardview, etc) which are 22+

2- Updated root projects build.gradle file to use latest gradle version :

classpath 'com.android.tools.build:gradle:1.2.3'

3- In gradle-wrapper.properties file I used the latest gradle version which is 2.4

distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
like image 156
MohammadReza Avatar answered Nov 04 '22 20:11

MohammadReza


I had in build.gradle : classpath 'com.android.tools.build:gradle:1.0.0'

I changed to : classpath 'com.android.tools.build:gradle:1.2.3'

it works for me

like image 38
bloub Avatar answered Nov 04 '22 20:11

bloub