Return-Path: X-Original-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B309D9A87 for ; Tue, 29 May 2012 20:47:54 +0000 (UTC) Received: (qmail 43139 invoked by uid 500); 29 May 2012 20:47:54 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 43092 invoked by uid 500); 29 May 2012 20:47:54 -0000 Mailing-List: contact callback-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-commits@incubator.apache.org Received: (qmail 43079 invoked by uid 99); 29 May 2012 20:47:54 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 May 2012 20:47:54 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 03A5F18BE7; Tue, 29 May 2012 20:47:54 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bowserj@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [3/3] android commit: updated create script CB 839 Message-Id: <20120529204754.03A5F18BE7@tyr.zones.apache.org> Date: Tue, 29 May 2012 20:47:54 +0000 (UTC) updated create script CB 839 Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/commit/b77f1cbf Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/tree/b77f1cbf Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/diff/b77f1cbf Branch: refs/heads/CordovaWebView Commit: b77f1cbff8c28177ce8c0fd1231ac5299a0da6f5 Parents: ccd4365 Author: Steven Gill Authored: Wed May 30 00:11:11 2012 +1000 Committer: Steven Gill Committed: Wed May 30 00:11:11 2012 +1000 ---------------------------------------------------------------------- bin/create | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/blob/b77f1cbf/bin/create ---------------------------------------------------------------------- diff --git a/bin/create b/bin/create index e767044..05393fe 100755 --- a/bin/create +++ b/bin/create @@ -41,7 +41,8 @@ android update project --target $TARGET --path ./framework # Use curl to get the jar (TODO: Support Apache Mirrors) curl -OL http://mirror.symnds.com/software/Apache//commons/codec/binaries/commons-codec-1.6-bin.zip unzip commons-codec-1.6-bin.zip -cp commons-codec-1.6/commons-codec-1.6.jar ./framework/libs +mkdir ./framework/libs +cp commons-codec-1.6/commons-codec-1.6.jar ./framework/libs/ # compile cordova.js and cordova.jar cd ./framework && ant jar && cd ../