CB-7238: I should have collapsed this, but Config.init() must go before the creation of CordovaWebView
Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/48b51c45 Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/48b51c45 Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/48b51c45 Branch: refs/heads/4.0.x Commit: 48b51c451a6b761d0e4e0415252642fc96e62960 Parents: 3d191d5 Author: Joe Bowser <[email protected]> Authored: Thu Jul 31 09:23:14 2014 -0700 Committer: Joe Bowser <[email protected]> Committed: Thu Jul 31 09:23:14 2014 -0700 ---------------------------------------------------------------------- test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-android/blob/48b51c45/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 f9382d9..1c1789e 100644 --- a/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java +++ b/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java @@ -51,7 +51,6 @@ public class CordovaWebViewTestActivity extends Activity implements CordovaInter Config.init(this); cordovaWebView = (CordovaWebView) findViewById(R.id.cordovaWebView); - Config.init(this); cordovaWebView.init(this, new CordovaWebViewClient(this, cordovaWebView), new CordovaChromeClient(this, cordovaWebView), Config.getPluginEntries(), Config.getWhitelist(), Config.getPreferences());
