Skip to content

Instantly share code, notes, and snippets.

@vorobeij
Created February 20, 2019 12:23
Show Gist options
  • Save vorobeij/aa0444b5233955094d82e37e730ab7ea to your computer and use it in GitHub Desktop.
Save vorobeij/aa0444b5233955094d82e37e730ab7ea to your computer and use it in GitHub Desktop.
memory app android
override fun getAllocatedMemoryMb(): Int {
val pids = intArrayOf(android.os.Process.myPid())
return activityManager.getProcessMemoryInfo(pids)[0].totalPss / 1000
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment