Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.