Chris Haley created CB-7740:
-------------------------------
Summary: navigator.device.capture.captureImage() returns error
each time
Key: CB-7740
URL: https://issues.apache.org/jira/browse/CB-7740
Project: Apache Cordova
Issue Type: Bug
Components: Android
Affects Versions: 3.6.3
Environment: Android 4.4.4
Cordova 3.6.3
Galaxy S5
Reporter: Chris Haley
The following test code is producing an error message as soon as the Android
camera app closes after the "OK" button is clicked to accept the image. This is
on Android 4.4.4, Cordova 3.6.3, Galaxy S5. There are no prior albums/pictures
on the phone. I tried many different versions of the media-capture and file
plugins. The "Retry" button and back button work as expected.
HTML:
{code:html}
<button type="button" onclick="takePicture();">Take Pictures</button>
{code}
JavaScript:
{code:javascript}
takePicture = function() {
navigator.device.capture.captureImage(function(mediaFiles) {
alert("Pictures captured!");
}, function(err) {
alert("Err: " + err.message + "\n\Code: " + err.code);
}, {limit : 100});
};
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]