Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9AF3911215 for ; Wed, 7 May 2014 20:06:35 +0000 (UTC) Received: (qmail 4392 invoked by uid 500); 7 May 2014 18:31:13 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 7021 invoked by uid 500); 7 May 2014 08:41:07 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 4382 invoked by uid 99); 7 May 2014 08:01:07 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 May 2014 08:01:07 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 910C58B5687; Wed, 7 May 2014 04:25:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aharui@apache.org To: commits@flex.apache.org Message-Id: <6d9f6c985f9d42f4bdddeeade8d8812b@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: [flex-asjs] [refs/heads/develop] - setting quality to 100 seems to get around getPicture crash bug on Android 4.1 Date: Wed, 7 May 2014 04:25:15 +0000 (UTC) Repository: flex-asjs Updated Branches: refs/heads/develop a19e94e9a -> 64716973c setting quality to 100 seems to get around getPicture crash bug on Android 4.1 Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/64716973 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/64716973 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/64716973 Branch: refs/heads/develop Commit: 64716973cd8dc43a63c7ff5a74c6d0d1cb854791 Parents: a19e94e Author: Alex Harui Authored: Tue May 6 21:24:58 2014 -0700 Committer: Alex Harui Committed: Tue May 6 21:24:58 2014 -0700 ---------------------------------------------------------------------- examples/CordovaCameraExample/src/MyInitialView.mxml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/64716973/examples/CordovaCameraExample/src/MyInitialView.mxml ---------------------------------------------------------------------- diff --git a/examples/CordovaCameraExample/src/MyInitialView.mxml b/examples/CordovaCameraExample/src/MyInitialView.mxml index 319ff54..0ab3628 100644 --- a/examples/CordovaCameraExample/src/MyInitialView.mxml +++ b/examples/CordovaCameraExample/src/MyInitialView.mxml @@ -29,7 +29,7 @@ limitations under the License. public function snapPicture() : void { - cam.getPicture(success,failure,{quality:60, destinationType:org.apache.cordova.camera.Camera.DestinationType.FILE_URI}); + cam.getPicture(success,failure,{quality:100, destinationType:org.apache.cordova.camera.Camera.DestinationType.FILE_URI}); } private function success(data:Object):void