This plugin allows you to get total and free disk space on your device.
On Android it only supports internal storage for now.
Note: Minimum andoid SDK is 18.
DiskUsage.read(function(result){
console.log("total:",result.internal.total);
console.log("free:",result.internal.free);
});
This code is released under the MIT license.
- Fixed values returned on ios.
- Removed add-swift-support plugin dependency.
- Updated code for swift 4.2.
- Initial release supporting both iOS and Android.