You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While downloading a file I want to show the progress in percentage(%) on the screen instead of showing it in the Notification UI. Please let me know if there is a way to do it or please add this feature if not there.
The text was updated successfully, but these errors were encountered:
@nagubabu , me unable to see any progress in percentage(%) on notification UI, can you please help me out to get it.
Please have a look here
var request = {
//Location of the resource to download
uri: url,
//Title of this download, to be displayed in notifications
title: 'Downloading',
//Description of this download, to be displayed in notifications
description: 'pdf download',
//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: 'Downloads',
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: 'Downloads',
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'}]
};
cordova.plugins.Downloader.download(request,
(location) => { alert('File is downloaded at' + location) },
(err) => { alert(err)})
thank you
While downloading a file I want to show the progress in percentage(%) on the screen instead of showing it in the Notification UI. Please let me know if there is a way to do it or please add this feature if not there.
The text was updated successfully, but these errors were encountered: