Last active
December 4, 2017 14:50
-
-
Save FireZenk/821d887c51e06333d885e41a5a15410d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun availableMemorySize(): Long { | |
val path: File = Environment.getDataDirectory() | |
val stat: StatFs = StatFs(path.getPath()) | |
return stat.getAvailableBlocksLong() * stat.getBlockSizeLong() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment