Hi,
I have a problem with the Ionic Native FileTransfer Plugin. I want to use it to download Images from a server. I have installed everything a is it mentioned in the docs. But when I run it on my ios Simulator, it comes a warning that it is not installed.
I am not reaching this part of the code. I neither get the “download complete” nor the “error” message on the console.
const fileTransfer: FileTransferObject = this.transfer.create();
fileTransfer.download(url, this.file.dataDirectory + item.title).then((entry) => {
console.log('download complete: ' + entry.toURL());
}, (error) => {
console.log("error");
})
Here you can see the console output from my ios Simulator.
And here you can see, that the plugin is installed.
Do I have to install it separately for my ios Simulator?
I am using ionic 3.8.1 on a Mac with macOS Sierra.