Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Youtube Music | 3,137 | a day ago | 260 | mit | JavaScript | |||||
YouTube Music Desktop App bundled with custom plugins (and built-in ad blocker / downloader) | ||||||||||
Flutter_downloader | 814 | 22 | 1 | 18 days ago | 53 | May 26, 2022 | 280 | bsd-3-clause | Kotlin | |
Flutter Downloader - A plugin for creating and managing download tasks. Maintainer: @bartekpacia | ||||||||||
Happypandax | 743 | 2 days ago | 85 | lgpl-3.0 | JavaScript | |||||
A cross-platform server and client application for managing and reading manga and doujinshi | ||||||||||
Gradle Download Task | 602 | 64 | 11 | 2 days ago | 34 | May 04, 2022 | 4 | apache-2.0 | Java | |
📥 Adds a download task to Gradle that displays progress information | ||||||||||
Fanficfare | 587 | 5 days ago | 107 | June 01, 2022 | 27 | other | Python | |||
FanFicFare is a tool for making eBooks from stories on fanfiction and other web sites. | ||||||||||
Keepass Yet Another Favicon Downloader | 396 | a year ago | 9 | mit | C# | |||||
Yet Another Favicon Downloader for KeePass 2.x | ||||||||||
Mangaripper | 159 | 2 years ago | 21 | mit | C# | |||||
This software helps you download manga (Japanese Comic) from several websites for your offline viewing. | ||||||||||
Mymanga | 66 | 5 years ago | 12 | gpl-3.0 | C# | |||||
Manga downloader and reader for Windows 7/8.1/10. Written in C# with a clean and simple WPF interface. | ||||||||||
Cordova Plugin Apkupdater | 62 | 4 months ago | 24 | December 10, 2021 | mit | Java | ||||
This plugin allows your Android app to download and install compressed updates without the Google Play Store. | ||||||||||
Mindl | 44 | 6 years ago | 5 | December 21, 2016 | 11 | agpl-3.0 | Go | |||
A downloader for various sites and services. |
This plugin is designed to support downloading files using Android DownloadManager.
cordova plugin add integrator-cordova-plugin-downloader
Create download request. For more info on parameter use refer to DownloadRequest
.
var request = {
//Location of the resource to download
uri: '',
//Title of this download, to be displayed in notifications
title: '',
//Description of this download, to be displayed in notifications
description: '',
//This will override the content type declared in the server's response.
mimeType: '',
//Set whether this download should be displayed in the system's Downloads UI. True by default
visibleInDownloadsUi: true,
//Control when a system notification is posted by the download manager.
notificationVisibility: 0,
// Set the local destination to a path within the application's external files directory
destinationInExternalFilesDir: {
dirType: '',
subPath: '' //Path within the external directory, including the destination filename
},
//Set the local destination to a path within the application's public external storage directory
destinationInExternalPublicDir: {
dirType: '',
subPath: '' //Path within the external directory, including the destination filename
},
//Set the local destination for the downloaded file.
destinationUri: '',
//Additional HTTP headers to be included with the download request.
headers: [{header: 'Authorization', value: 'Bearer iaksjfd89aklfdlkasdjf'}]
};
Starts download and returns location uri on completion
cordova.plugins.Downloader.download(request,
(location) => { alert('File is downloaded at' + location) },
(err) => { alert(err)})
Based on Emil Bay's cordova-plugin-android-downloadmanager