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.
Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/3d191d58 Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/3d191d58 Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/3d191d58 Branch: refs/heads/4.0.x Commit: 3d191d5884ef66d97cbf89bd1347cf2da1d4dacf Parents: 955133f Author: Joe Bowser <[email protected]> Authored: Thu Jul 31 08:17:31 2014 -0700 Committer: Joe Bowser <[email protected]> Committed: Thu Jul 31 08:17:31 2014 -0700 ---------------------------------------------------------------------- test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-android/blob/3d191d58/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java ---------------------------------------------------------------------- diff --git a/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java b/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java index 06070cc..f9382d9 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),
