Reputation: 13402
In Android Studio, while I'm writing code sometime it starts multiple build processes. This eventually slows my PC to the point that it's not possible to do anything until the processes finish.
Is there a way to make it check if a build is already in process and wait for it to finish or abort the previous one ?
Upvotes: 4
Views: 3774
Reputation: 18978
Check whether your project is set to make automatically. To do this go to File
-> Settings
-> Compiler
, then uncheck Make project automatically
. Do the same under Compiler
-> Gradle
.
Upvotes: 0