diff --git a/framework/src/org/apache/cordova/DroidGap.java b/framework/src/org/apache/cordova/DroidGap.java index bb895e25..3c6610f6 100755 --- a/framework/src/org/apache/cordova/DroidGap.java +++ b/framework/src/org/apache/cordova/DroidGap.java @@ -679,8 +679,16 @@ public class DroidGap extends Activity implements CordovaInterface { */ protected void onResume() { super.onResume(); + //Reload the configuration + Config.init(this); LOG.d(TAG, "Resuming the App"); + + + //Code to test CB-3064 + String errorUrl = this.getStringProperty("errorUrl", null); + LOG.d(TAG, "CB-3064: The errorUrl is " + errorUrl); + if (this.activityState == ACTIVITY_STARTING) { this.activityState = ACTIVITY_RUNNING; return;