I managed to use the $cordovaFile plugin in ngCordova , my only problem is with the function:
$cordovaFile
.downloadFile(source, filePath, true)
.then(function (result) {
// Success!
}, function (err) {
}, function (progress) {
// constant progress update
});
How do i get the percentage of the progress from the progress object ? The documentation doesn’t say anything about it and printing to the console returns an [object Object ]