You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by bo...@apache.org on 2013/01/19 01:41:38 UTC

[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

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 <bo...@apache.org>
Authored: Fri Jan 18 16:37:55 2013 -0800
Committer: Joe Bowser <bo...@apache.org>
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);