Gradle take too much to build

android, android-studio

Solution

Well I don't know if you're still looking for a solution..but this might help someone, someday :

- Go to the `.gradle` folder (C:\Users\your_user_name\.gradle).

- Create a `gradle.properties` file (if it does not exist).

Add these lines in it :

org.gradle.daemon=true
org.gradle.parallel=true

Problem

I'm use Android studio , and when i build a project , it's give me from Grandle console : Executing tasks: [:app:assembleDebug]' , and it's get stuck on it , and give me no progress !

Original source