Android studio OpenJDK platform binary problem it repeats up to 80 or more

Viewed 2585

enter image description here

Hi, since yesterday I got this problem with Android Studio, it gets open "JDK platform binary" many times ( I didn't let it to goes on ), and my laptop will be not responding

how can I solve this? any thought?

4 Answers

Check If Your Hotspot is on. Turn that off, Kill Your android Studio Process from Task Manager and open again. I don't why but it fixed the issue for me.

I can't find the reason why there are so many process java.exe in Task Manager but there is a quick solution for that problem.

make a kill.bat file with content as bellow and add to your PATH

taskkill /IM "java.exe" /F

And use command kill to kill all process java.exe when you want.

If it's still opening too many times without turn on the hotspot, run the android studio as administrator. It fixed this issue for me.

Update

After that still not fixed. use org.gradle.jvmargs=-Xms512m -Dfile.encoding=UTF-8 in the gradle.properties instead of org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8. And do not share your connection. Do not share the connection

That would be fix the issue permanently.

First you need to kill all processes and turn of the wifi hostpot it will solve the problem

Related