Skip to content

Instantly share code, notes, and snippets.

@FireZenk
Last active December 4, 2017 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FireZenk/0db1ca4b8ccfa516ea498b0de339c4ab to your computer and use it in GitHub Desktop.
Save FireZenk/0db1ca4b8ccfa516ea498b0de339c4ab to your computer and use it in GitHub Desktop.
fun totalMemorySize(): Long {
val path: File = Environment.getDataDirectory()
val stat: StatFs = StatFs(path.getPath())
return stat.getBlockCountLong() * stat.getBlockSizeLong()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment