From f2d7c49acf4a9d8a339fcef0a835eb2634804de6 Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Tue, 7 Apr 2015 13:30:26 -0400 Subject: [PATCH] Fix manual tests not finding activity plugin Was broken by recent refactor: 5b87380749e1e7 --- test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java | 1 + 1 file changed, 1 insertion(+) diff --git a/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java b/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java index 5df5cbac..f52379d3 100644 --- a/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java +++ b/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java @@ -59,6 +59,7 @@ public class CordovaWebViewTestActivity extends Activity { //Set up the webview ConfigXmlParser parser = new ConfigXmlParser(); + parser.parse(this); SystemWebView webView = (SystemWebView) findViewById(R.id.cordovaWebView); cordovaWebView = new CordovaWebViewImpl(this, new SystemWebViewEngine(webView));