You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Ralph S Theart (JIRA)" <ji...@apache.org> on 2014/03/18 00:06:49 UTC

[jira] [Comment Edited] (CB-6249) Camera fails to return an actual FILE_URI it always returns content://

    [ https://issues.apache.org/jira/browse/CB-6249?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13938529#comment-13938529 ] 

Ralph S Theart edited comment on CB-6249 at 3/17/14 11:05 PM:
--------------------------------------------------------------

As I surmised getMetadata **only** contains _modificationTime_ and _size_ as its properties...so this method is useless for me.
Is it even possible to get the FILE_URL back like I was able to do before I updated to phonegap 3.0.0+ when I was on 2.8 it returned the file name + extension on android devices...why the change?? Definitely need a work around


was (Author: drumaboy46):
As I surmised getMetadata on contains _modificationTime_ and _size_ as its properties...so this method is useless for me.
Is it even possible to get the FILE_URL back like I was able to do before I updated to phonegap 3.0.0+ when I was on 2.8 it returned the file name + extension on android devices...why the change?? Definitely need a work around

> Camera fails to return an actual FILE_URI it always returns content://
> ----------------------------------------------------------------------
>
>                 Key: CB-6249
>                 URL: https://issues.apache.org/jira/browse/CB-6249
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Android, Plugin Camera, Plugin File
>    Affects Versions: 3.4.0
>         Environment: Current Node Version
>     v0.10.25
> Current Cordova CLI Version
>     3.4.0-0.1.0
> Android
>            Reporter: Ralph S Theart
>              Labels: camera, file
>
> No matter what I do I can not get a url of file:///... all I get is 
> {code}
> content://media/external/images/media/1357
> {code}
> Here is my very simple code....
> {code}
> navigator.camera.getPicture(function(imageURI){
>    console.log('GOT IMAGE: '+imageURI);
>    window.resolveLocalFileSystemURL(imageURI, function(entry){
>       console.log(entry.name + " " +entry.fullPath);
>    }, function(e){
>       console.log('Some error occured: '+e.code);
>    }); 
> }, onPhotoFail, {
>    destinationType: 1, 
>    sourceType: pictureSource,
>    mediaType : Camera.MediaType.ALLMEDIA,
>    encodingType: 0,
>    allowEdit : false,
>    correctOrientation:true,
>    saveToPhotoAlbum: false,
>    quality: 50
> });
> {code}
> I always get content://... for the returned path from camera and even the same thing when I resolve the url. Can you confirm this bug?



--
This message was sent by Atlassian JIRA
(v6.2#6252)