cordova-plugin-file-downloader
cordova-plugin-file-downloader copied to clipboard
Phonegap plugin to download a list of files or a single file to the phone, check consistency and unzip if necessary (Android and ios)
It looks like `cordova-plugin-file-transfer` is dead at the moment. That is the key plugin that is required by this plugin. I think the powers that be are working on another,...
At a loss now, spent last few hours trying to figure this one out, but downloads are failing Cordova11 (cordova-android@11) I think this is happening on `download.init` because its not...
**Fail on dependence Filetransfer:** Cordova: 11.0.0 Android-API: 30 Gradle: 7.3.3 Java-SDK: 11.0.13 > Task :app:compileDebugJavaWithJavac FAILED /home/xxx/platforms/android/app/src/main/java/org/apache/cordova/filetransfer/FileTransfer.java:48: error: cannot find symbol import org.apache.cordova.Whitelist; ^ symbol: class Whitelist location: package org.apache.cordova...
Sorry for my noob question, but what must i write to get the eventlistener results ? At the moment i have this here: ` document.addEventListener('DOWNLOADER_gotFileSystem', function(event){ var data = event.data;...
Using cordova, I have this all working on Android...and mostly on iOS too. However, after the download on iOS I can't find the file anywhere. Here is my download function:...
Hi, I was trying to download a document from internet (via a URL). Using this plugin for angular application (building ios app using cordova) Here's the code i wrote for...
I've been having the issue mentioned here: `Downloader.localFolder.toURL is not a function.` This error happens the second time I try to download a file this way: ``` downloader.init({folder: "testApp"}); downloader.get("http://yourhost.de/some.zip");...
When i try downloading image from a site i get the IsTrusted - False error. Details from my error callback event is as listed below Name - Downloader_DownloadError Data -...
I use below code for changing downloaded file name so file is downloaded successfully but did not changed its name. downloader.get("http://example.com/image/catalog/logo.png", null, "new.jpg");
i have tried the below code downloader.init({ folder: 'offlineCode', fileSystem: cordova.file.externalDataDirectory,unzip: true}); file is getting downloaded but it is not extracting the files(unzip:true)is not working