1.1.1 • Published 8 months ago

cordova-plugin-simple-downloader v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

cordova-plugin-simple-downloader

a cordova plugin to simple download file, return file md5, only for android platfrom.

Install/UnInstall

install from github repository using this command

cordova plugin add https://github.com/Tri-body/cordova-plugin-simple-downloader

or install from npmjs package using this command

cordova plugin add cordova-plugin-simple-downloader

uninstall using this command

cordova plugin remove cordova-plugin-simple-downloader

How to Use

SimpleDownloader.download(
  'http://127.0.0.1:8080/xxx.mp4',
  '/storage/emulated/0/Android/data/<appid>/files/', // can't use file:///storage...
  'yyy.mp4',
  (md5) => {
    console.log('ok', md5);
  },
  e => {
    console.error('error: ', e);
  },
  true // if true, success callback return file md5, default false.
);
1.1.1

8 months ago

1.1.0

8 months ago

1.0.3

8 months ago

1.0.2

8 months ago