From e74baf188fbc9672af47f7b653597ed2abbaa82f Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Fri, 4 Jul 2014 12:19:28 -0400 Subject: [PATCH] Don't re-parse config.xml in onResume. There shouldn't be any need to. --- framework/src/org/apache/cordova/CordovaActivity.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/framework/src/org/apache/cordova/CordovaActivity.java b/framework/src/org/apache/cordova/CordovaActivity.java index 89d4c81f..97697fcc 100755 --- a/framework/src/org/apache/cordova/CordovaActivity.java +++ b/framework/src/org/apache/cordova/CordovaActivity.java @@ -657,8 +657,6 @@ public class CordovaActivity extends Activity implements CordovaInterface { protected void onResume() { super.onResume(); LOG.d(TAG, "Resuming the App"); - //Reload the configuration - Config.init(this); if (this.activityState == ACTIVITY_STARTING) { this.activityState = ACTIVITY_RUNNING;