Josh Sharpe created CB-11492:
--------------------------------

             Summary: window.resolveLocalFileSystemURL is not resolving 
content:// path to a file:// path
                 Key: CB-11492
                 URL: https://issues.apache.org/jira/browse/CB-11492
             Project: Apache Cordova
          Issue Type: Bug
          Components: Android, Plugin File
    Affects Versions: 4.2.0
            Reporter: Josh Sharpe


It's my understanding that the file plugin (resolveLocalFileSystemURL) should 
handle this, however I had to use the file-path plugin (resolveNativePath)

var path = 
"content://com.android.providers.media.documents/document/image:1051";

window.resolveLocalFileSystemURL(path, function(a){
  console.log(a)
})

-> undefined

window.FilePath.resolveNativePath(path, function(localFileUri) {
  console.log(localFileUri)
});

-> "file:///storage/emulated/0/DCIM/Camera/IMG_20160625_104045.jpg"




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

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to