
net.rdrei.android.buildtimetracker.reporters.MemoryUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin Show documentation
Show all versions of gradle-plugin Show documentation
Gradle plugin which tracks your build times.
The newest version!
package net.rdrei.android.buildtimetracker.reporters;
/**
* This hackery doesn't work in Groovy, so we have to
* implement this in Java.
*/
public class MemoryUtil {
public static long getPhysicalMemoryAvailable() {
com.sun.management.OperatingSystemMXBean bean =
(com.sun.management.OperatingSystemMXBean)
java.lang.management.ManagementFactory.getOperatingSystemMXBean();
return bean.getTotalPhysicalMemorySize();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy