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-amazon-fireos/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/commit/9c4da7b9 Tree: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/tree/9c4da7b9 Diff: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/diff/9c4da7b9 Branch: refs/heads/master Commit: 9c4da7b93eadd31a05e2829dc7e8765aee62d99f Parents: 2fdc675 Author: Joe Bowser <[email protected]> Authored: Thu Jul 31 08:17:31 2014 -0700 Committer: Archana Naik <[email protected]> Committed: Tue Aug 5 12:45:23 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-amazon-fireos/blob/9c4da7b9/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 889bd5f..55ebfeb 100644 --- a/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java +++ b/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java @@ -66,6 +66,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),
