Hi i am making an application for android which installed in phone and on first run it calls for some data to download for application for offline support but my code bellow is not working always return me error code 3.
// Wait for Cordova to load
//
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
//
function onDeviceReady() {
downloadfile();
}
function downloadfile() {
var fileTransfer = new FileTransfer();
fileTransfer.download(
"http://sandbox.didx.net/hb/mobile/1.jpg",
"file:///Android/data/com.phonegap.testphone/1.jpg",
function(entry) {
alert("download complete: " + entry.fullPath);
},
function(error) {
alert("download error source " + error.source);
console.log("download error source " + error.source);
alert("download error target " + error.target);
console.log("download error target " + error.target);
alert("upload error code" + error.code);
console.log("upload error code" + error.code);
}
);
}
</script>