You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Dan Cornish (JIRA)" <ji...@apache.org> on 2015/06/03 17:09:38 UTC

[jira] [Created] (CB-9110) Android 5 Using Internal Storage - Cordova File Plugin

Dan Cornish created CB-9110:
-------------------------------

             Summary: Android 5 Using Internal Storage - Cordova File Plugin
                 Key: CB-9110
                 URL: https://issues.apache.org/jira/browse/CB-9110
             Project: Apache Cordova
          Issue Type: Bug
          Components: Android
    Affects Versions: 3.5.0
            Reporter: Dan Cornish


I'm using a Samsung Galaxy S6 (Android 5) for testing.  fileEntry.file failing only when using "Internal Storage" to select an image.  If I use the "Gallery" or "Images", it works correctly.  

Please see below for code snippet.

Thanks

navigator.camera.getPicture(
    function (imageURI) {
        window.resolveLocalFileSystemURL(
            imageURI,
            function (fileEntry) {

                //THIS LINE IS WHERE IT'S FAILING BUT ONLY WHEN USING THE "INTERNAL STORAGE" OPTION FOR SELECTING A FILE
                fileEntry.file(function (myFile) {
                    console.log("SUCCESS");
                },
                function (error) {
                    console.log("FAIL");
                });
            },
            function () { });
    },
    function () { },
    {
        quality: 50,
        destinationType: navigator.camera.DestinationType.FILE_URI,
        sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY
    });




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org