4

When I run an app with Android Studio, the build takes a lot of time to execute, after few minutes, I decide to stop precess, but nothing happened. Is there a way to kill Gradle process? Thank You.

Kheiro Ok
  • 37
  • 1
  • 1
  • 5

1 Answers1

8

you can call ./gradlew --stop in a Terminal and it will kill all grade processes

It requires admin permission run this for permission before first command

$ chmod +x gradlew

OR

click left most button in image below which came in Android Studio 2.2

Android studio tool bar screen shot

kartikag01
  • 1,539
  • 1
  • 18
  • 36