this plugin fork from vasani-arpit/cordova-plugin-downloadmanager and change download path to default android system download dirctory
A Cordova plugin to download file in system's default download manager
- Android (SDK >= 11)
cordova plugin add https://github.com/HosseinArian/cordova-plugin-downloadmanager
//once device is ready
var fail = function (message) {
alert(message)
}
var success = function (data) {
console.log("succes");
}
cordova.plugins.DownloadManager.download("Your URL to download", success, fail);
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request