javaandroidandroid-studiogradle

Gradle leaves java as a process even after closing android studio


On mac system whenever i close android studio it leaves java process and java process keep running and keep hogging the ram memory.Having a mac with only 4gb is sometime painful if you see that java process is taking upto 1gb of ram enter image description here

enter image description here

is there any option in android studio so that as soon as i quit all the process related to it should be closed or any command that i can run for cleanup?


Solution

  • From the documentation:

    Daemon processes will automatically terminate themselves after 3 hours of inactivity. If you wish to stop a Daemon process before this, you can either kill the process via your operating system or run the gradle --stop command. The --stop switch causes Gradle to request that all running Daemon processes, of the same Gradle version used to run the command, terminate themselves.