From 3d191d5884ef66d97cbf89bd1347cf2da1d4dacf Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Thu, 31 Jul 2014 08:17:31 -0700 Subject: [PATCH] CB-7238: Minor band-aid to get tests running again, this has to go away before 3.6.0 is released, since this is an API change. --- .../org/apache/cordova/test/CordovaWebViewTestActivity.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java b/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java index 06070cc5..f9382d93 100644 --- a/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java +++ b/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java @@ -47,6 +47,9 @@ public class CordovaWebViewTestActivity extends Activity implements CordovaInter setContentView(R.layout.main); + //CB-7238: This has to be added now, because it got removed from somewhere else + Config.init(this); + cordovaWebView = (CordovaWebView) findViewById(R.id.cordovaWebView); Config.init(this); cordovaWebView.init(this, new CordovaWebViewClient(this, cordovaWebView), new CordovaChromeClient(this, cordovaWebView),