Skip to content

Instantly share code, notes, and snippets.

@mutkuensert
Created March 20, 2024 13:17
Show Gist options
  • Save mutkuensert/5f5357cb8db74edd8a3426998ef35c17 to your computer and use it in GitHub Desktop.
Save mutkuensert/5f5357cb8db74edd8a3426998ef35c17 to your computer and use it in GitHub Desktop.
Getting total memory of Android device
val activityManager = (context.getSystemService(Context.ACTIVITY_SERVICE) as ActivityManager)
val memoryInfo = ActivityManager.MemoryInfo()
activityManager.getMemoryInfo(memoryInfo)
val totalMemory = memoryInfo.totalMem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment