[ https://issues.apache.org/jira/browse/CB-8804?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14507229#comment-14507229 ]
ASF GitHub Bot commented on CB-8804: ------------------------------------ Github user agrieve commented on a diff in the pull request: https://github.com/apache/cordova-plugin-camera/pull/83#discussion_r28881787 --- Diff: src/android/CameraLauncher.java --- @@ -163,7 +167,15 @@ else if ((srcType == PHOTOLIBRARY) || (srcType == SAVEDPHOTOALBUM)) { PluginResult r = new PluginResult(PluginResult.Status.NO_RESULT); r.setKeepCallback(true); callbackContext.sendPluginResult(r); - + + return true; + } else if (action.equals("checkForSavedResult")) { + this.imageUri = Uri.fromFile(createCaptureFile(JPEG)); --- End diff -- should you do this only when savedRequestCode > 0? > https://github.com/apache/cordova-plugin-camera#android-quirks > -------------------------------------------------------------- > > Key: CB-8804 > URL: https://issues.apache.org/jira/browse/CB-8804 > Project: Apache Cordova > Issue Type: Improvement > Components: Plugin Camera > Environment: Android > Reporter: Serge Huijben > Priority: Trivial > > Android Quirks > Android uses intents to launch the camera activity on the device to capture > images, and on phones with low memory, the Cordova activity may be killed. In > this scenario, the image may not appear when the Cordova activity is restored. -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org