I am developing a phonegap application which needs the Android Downloader plugin: https://github.com/phonegap/phonegap-plugins/tree/master/Android/Downloader
Unfortunately, it seems to fail using latest cordova (2.2). I've spent some hours trying to upgrade the code:
downloader.js
cordova.define(
"cordova/plugin/downloader",
function(require, exports, module)
{
var exec = require("cordova/exec");
var Downloader = function() {};
Downloader.prototype.downloadFile = function(fileUrl, params, successCallback, failureCallback)
{
// Make params hash optional.
if (!failureCallback) win = params;
return exec(
successCallback,
failureCallback,
'Downloader',
'downloadFile',
[fileUrl, params]);
};
var downloader = new Downloader();
module.exports = downloader;
}
);
Downloader.java
package org.apache.cordova.plugins.Downloader;
import org.apache.cordova.api.CordovaInterface;
import org.apache.cordova.api.Plugin;
import org.apache.cordova.api.PluginResult;
[more imports...]
public class Downloader extends Plugin
{
etc.
config.xml
<plugins>
<plugin name="App" value="org.apache.cordova.App"/>
[...]
<plugin name="Downloader" value="org.apache.cordova.plugins.Downloader"/>
</plugins>
HTML JS call
downloader = cordova.require("cordova/plugin/downloader");
downloader.downloadFile(...
The app compiles fine in Eclipse but when executing the downloader code I get: ALERT Class not found. The logcat says:
W/System.err(4035): java.lang.ClassNotFoundException: org.apache.cordova.plugins.Downloader ... Error adding plugin org.apache.cordova.plugins.Downloader.
Can you help me fixing what's wrong?
