Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-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 4F7A8D52A for ; Sat, 19 Jan 2013 00:41:39 +0000 (UTC) Received: (qmail 25423 invoked by uid 500); 19 Jan 2013 00:41:39 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 25381 invoked by uid 500); 19 Jan 2013 00:41:39 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 25370 invoked by uid 99); 19 Jan 2013 00:41:39 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 19 Jan 2013 00:41:39 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D9FB381FBD0; Sat, 19 Jan 2013 00:41:38 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bowserj@apache.org To: commits@cordova.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [1/2] android commit: Partial Fix for CB-2269 * Moved Config.init call into DroidGap for the most common use-case * The CordovaWebView docuemntation still has to be updated * The template has to be changed, since we don't want to have two different Message-Id: <20130119004138.D9FB381FBD0@tyr.zones.apache.org> Date: Sat, 19 Jan 2013 00:41:38 +0000 (UTC) Partial Fix for CB-2269 * Moved Config.init call into DroidGap for the most common use-case * The CordovaWebView docuemntation still has to be updated * The template has to be changed, since we don't want to have two different types of config Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/2b32dfd9 Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/2b32dfd9 Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/2b32dfd9 Branch: refs/heads/master Commit: 2b32dfd99da46474122afecee16f7473a4c6e720 Parents: 679de40 Author: Joe Bowser Authored: Fri Jan 18 16:37:55 2013 -0800 Committer: Joe Bowser Committed: Fri Jan 18 16:37:55 2013 -0800 ---------------------------------------------------------------------- framework/src/org/apache/cordova/DroidGap.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-android/blob/2b32dfd9/framework/src/org/apache/cordova/DroidGap.java ---------------------------------------------------------------------- diff --git a/framework/src/org/apache/cordova/DroidGap.java b/framework/src/org/apache/cordova/DroidGap.java index 2299fb7..69a7650 100755 --- a/framework/src/org/apache/cordova/DroidGap.java +++ b/framework/src/org/apache/cordova/DroidGap.java @@ -261,7 +261,7 @@ public class DroidGap extends Activity implements CordovaInterface { @SuppressWarnings("deprecation") @Override public void onCreate(Bundle savedInstanceState) { - + Config.init(this); LOG.d(TAG, "DroidGap.onCreate()"); super.onCreate(savedInstanceState);