You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "boniface pereira (JIRA)" <ji...@apache.org> on 2017/06/10 08:17:18 UTC

[jira] [Created] (CB-12909) cordova-plugin-camera crashes after taking picture

boniface pereira created CB-12909:
-------------------------------------

             Summary: cordova-plugin-camera crashes after taking picture
                 Key: CB-12909
                 URL: https://issues.apache.org/jira/browse/CB-12909
             Project: Apache Cordova
          Issue Type: Bug
          Components: cordova-plugin-camera
    Affects Versions: cordova@7.0.0
            Reporter: boniface pereira


Im using cordova version 7+
and android version 4.4.4

This works if i pick an image from my library, but not with camera.
After i capture the image, the app simply restarts or sometimes crashes.


here is my code: 

    options: CameraOptions = {
        quality: 75,
        destinationType: this.camera.DestinationType.FILE_URI,
        encodingType: this.camera.EncodingType.JPEG,
        mediaType: this.camera.MediaType.PICTURE,
        sourceType: this.camera.PictureSourceType.CAMERA,
        targetWidth: 200,
        targetHeight: 200,
        saveToPhotoAlbum: true,
    };

    this.camera.getPicture(this.options).then((data) => {
            if (data.substr(0, 7) == 'content') {
                this.filePath.resolveNativePath(data).then(newPath => {
                    this.startUpload(); // external function
                })
            } else {
                this.startUpload();
            }
        }, err => {
        });



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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